X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Ftime%2Fwcsftime.c;h=72af913775fa7084f686b4ebd456fe7902a1da5b;hb=d8e283df58eb8bff1aa2f8a99347e294c7f67cb9;hp=7b631f5f74b3571e023532a37ab5564cf0b80644;hpb=cccf64e281026a06ba03c1d4157237013e763ad2;p=musl diff --git a/src/time/wcsftime.c b/src/time/wcsftime.c index 7b631f5f..72af9137 100644 --- a/src/time/wcsftime.c +++ b/src/time/wcsftime.c @@ -2,37 +2,68 @@ #include #include #include +#include "libc.h" -size_t __strftime_l(char *restrict, size_t, const char *restrict, const struct tm *restrict, locale_t); +const char *__strftime_fmt_1(char (*s)[100], size_t *l, int f, const struct tm *tm, locale_t loc); -size_t __wcsftime_l(wchar_t *restrict wcs, size_t n, const wchar_t *restrict f, const struct tm *restrict tm, locale_t loc) +size_t __wcsftime_l(wchar_t *restrict s, size_t n, const wchar_t *restrict f, const struct tm *restrict tm, locale_t loc) { - size_t k, n0=n; - char out[100], in[4]; - while (*f) { - if (!n) return 0; + size_t l, k; + char buf[100]; + wchar_t wbuf[100]; + wchar_t *p; + const char *t_mb; + const wchar_t *t; + int plus; + unsigned long width; + for (l=0; l+1= n-l) return 0; + } else { + width = 0; + } + f = p; + if (*f == 'E' || *f == 'O') f++; + t_mb = __strftime_fmt_1(&buf, &k, *f, tm, loc); + if (!t_mb) return 0; + k = mbstowcs(wbuf, t_mb, sizeof wbuf / sizeof *wbuf); + if (k == (size_t)-1) return 0; + t = wbuf; + if (width) { + for (; *t=='+' || *t=='-' || (*t=='0'&&t[1]); t++, k--); + width--; + if (plus && tm->tm_year >= 10000-1900) + s[l++] = '+'; + else if (tm->tm_year < -1900) + s[l++] = '-'; + else + width++; + if (width >= n-l) return 0; + for (; width > k; width--) + s[l++] = '0'; + } + if (k >= n-l) return 0; + wmemcpy(s+l, t, k); + l += k; } - if (!n) return 0; - *wcs++ = 0; - return n0-n; + return 0; } size_t wcsftime(wchar_t *restrict wcs, size_t n, const wchar_t *restrict f, const struct tm *restrict tm) { - return __wcsftime_l(wcs, n, f, tm, LC_GLOBAL_LOCALE); + return __wcsftime_l(wcs, n, f, tm, 0); } + +weak_alias(__wcsftime_l, wcsftime_l);