Lines Matching full:foo*
1155 curl_msnprintf(buf, sizeof(buf), "%0*d%s", 2, 9, "foo");
1156 errors += string_check(buf, "09foo");
1158 curl_msnprintf(buf, sizeof(buf), "%*.*s", 5, 2, "foo");
1161 curl_msnprintf(buf, sizeof(buf), "%*.*s", 2, 5, "foo");
1162 errors += string_check(buf, "foo");
1164 curl_msnprintf(buf, sizeof(buf), "%*.*s", 0, 10, "foo");
1165 errors += string_check(buf, "foo");
1167 curl_msnprintf(buf, sizeof(buf), "%-10s", "foo");
1168 errors += string_check(buf, "foo ");
1170 curl_msnprintf(buf, sizeof(buf), "%10s", "foo");
1171 errors += string_check(buf, " foo");
1173 curl_msnprintf(buf, sizeof(buf), "%*.*s", -10, -10, "foo");
1174 errors += string_check(buf, "foo ");