Lines Matching refs:s
49 char *s = curl_easy_escape(easy, (const char *)a, asize); in test() local
51 if(s) { in test()
52 printf("%s\n", s); in test()
53 curl_free(s); in test()
56 s = curl_easy_escape(easy, "", 0); in test()
57 if(s) { in test()
58 printf("IN: '' OUT: '%s'\n", s); in test()
59 curl_free(s); in test()
61 s = curl_easy_escape(easy, " 123", 3); in test()
62 if(s) { in test()
63 printf("IN: ' 12' OUT: '%s'\n", s); in test()
64 curl_free(s); in test()