Lines Matching refs:string
29 #include <string.h>
118 *** If `slen' < 0, source string is null-terminated.
286 curl_easy_escape_ccsid(CURL *handle, const char *string, int length,
292 if(!string) {
297 s = dynconvert(ASCII_CCSID, string, length? length: -1, sccsid);
315 curl_easy_unescape_ccsid(CURL *handle, const char *string, int length,
322 if(!string) {
327 s = dynconvert(ASCII_CCSID, string, length? length: -1, sccsid);
394 /* Helper for curl_version_info_ccsid(): convert a string if defined.
445 compiler seems to compare string values after substitution. */
727 cp2 = realloc(cp, l); /* Shorten buffer to the string size. */
946 /* Must be a convertible string. */
1367 mime_string_call(curl_mimepart *part, const char *string, unsigned int ccsid,
1368 CURLcode (*mimefunc)(curl_mimepart *part, const char *string))
1373 if(!string)
1374 return mimefunc(part, string);
1375 s = dynconvert(ASCII_CCSID, string, -1, ccsid);