Lines Matching defs:format
48 * have to duplicate the code of strftime(), we convert the format string to
53 * of the conversions in the format string change conversion state. When
55 * format specifications in the format string.
59 const wchar_t *format, const struct tm *timeptr)
61 return wcsftime_l(wcs, maxsize, format, timeptr, _current_locale());
66 const wchar_t *format, const struct tm *timeptr, locale_t loc)
75 * Convert the supplied format string to a multibyte representation
78 sflen = wcstombs_l(NULL, format, 0, loc);
83 wcstombs_l(sformat, format, sflen + 1, loc);