Lines Matching refs:curl_msnprintf
41 /*#define curl_msnprintf snprintf */
44 rc = curl_msnprintf(output, 4, "%.*s", width, buf);
49 rc = curl_msnprintf(output, 4, "%.*s", width, str);
55 rc = curl_msnprintf(output, 4, "%.*s", width, buf);
60 rc = curl_msnprintf(output, 8, "%.8s", str);
65 rc = curl_msnprintf(output, 8, "%.3s", "0123456789");
70 rc = curl_msnprintf(output, 8, "%-8s", str);
75 rc = curl_msnprintf(output, 8, "%8s", str);
80 rc = curl_msnprintf(output, 4, "%d", 10240);
85 rc = curl_msnprintf(output, 16, "%8s%8s", str, str);
90 rc = curl_msnprintf(output, 16, "%8d%8d", 1234, 5678);
95 rc = curl_msnprintf(output, 24, "%2$.*1$.99d", 3, 5678);