Lines Matching defs:format
24 * and output according to the corresponding format specification in format.
33 * format Format-control string.
47 int snprintf_s(char *strDest, size_t destMax, size_t count, const char *format, ...)
52 va_start(argList, format);
53 ret = vsnprintf_s(strDest, destMax, count, format, argList);
71 * and output according to the corresponding format specification in format.
79 * format Format-control string.
93 int snprintf_truncated_s(char *strDest, size_t destMax, const char *format, ...)
98 va_start(argList, format);
99 ret = vsnprintf_truncated_s(strDest, destMax, format, argList);