MCPcopy Create free account
hub / github.com/eggert/tz / strftime_l

Function strftime_l

strftime.c:174–181  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

172
173#if HAVE_STRFTIME_L
174size_t
175strftime_l(char *restrict s, size_t maxsize, char const *restrict format,
176 struct tm const *restrict t,
177 ATTRIBUTE_MAYBE_UNUSED locale_t locale)
178{
179 /* Just call strftime, as only the C locale is supported. */
180 return strftime(s, maxsize, format, t);
181}
182#endif
183
184size_t

Callers

nothing calls this directly

Calls 1

strftimeFunction · 0.85

Tested by

no test coverage detected