Searched defs:maxsize (Results 1 - 2 of 2) sorted by path

/bionic/libc/tzcode/
H A Dstrftime.c127 strftime(char *s, size_t maxsize, const char *format, const struct tm *t) argument
134 p = _fmt(((format == NULL) ? "%c" : format), t, s, s + maxsize, &warn);
151 if (p == s + maxsize)
/bionic/libc/upstream-openbsd/lib/libc/time/
H A Dwcsftime.c119 wcsftime(wchar_t *__restrict s, size_t maxsize, argument
127 p = _fmt(((format == NULL) ? L"%c" : format), t, s, s + maxsize, &warn);
128 if (p == s + maxsize) {
129 if (maxsize > 0)
130 s[maxsize - 1] = '\0';

Completed in 104 milliseconds