Lines Matching refs:format
55 wprintf(const wchar_t *format, ...)
61 va_start(ap, format);
83 count = _wndoprnt(format, ap, stdout, 0);
100 fwprintf(FILE *iop, const wchar_t *format, ...)
106 va_start(ap, format);
129 count = _wndoprnt(format, ap, iop, 0);
146 swprintf(wchar_t *string, size_t n, const wchar_t *format, ...)
159 va_start(ap, format);
160 count = _wndoprnt(format, ap, &siop, 0);
179 _wprintf_c89(const wchar_t *format, ...)
184 va_start(ap, format);
185 count = _vwprintf_c89(format, ap);
191 _fwprintf_c89(FILE *iop, const wchar_t *format, ...)
196 va_start(ap, format);
197 count = _vfwprintf_c89(iop, format, ap);
203 _swprintf_c89(wchar_t *string, size_t n, const wchar_t *format, ...)
208 va_start(ap, format);
209 count = _vswprintf_c89(string, n, format, ap);