Searched refs:maxsize (Results 1 - 2 of 2) sorted by relevance
/bionic/libc/tzcode/ |
H A D | strftime.c | 138 strftime_l(char *s, size_t maxsize, char const *format, struct tm const *t, argument 142 return strftime(s, maxsize, format, t); 149 strftime(char *s, size_t maxsize, const char *format, const struct tm *t) argument 156 p = _fmt(((format == NULL) ? "%c" : format), t, s, s + maxsize, &warn); 173 if (p == s + maxsize)
|
/bionic/libc/upstream-openbsd/lib/libc/time/ |
H A D | wcsftime.c | 119 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 19 milliseconds