fix regression in inet_aton due to misinterpretation of __ipparse return
[musl] / src / time / wcsftime.c
1 #include <wchar.h>
2 #include <time.h>
3 #include <string.h>
4 #include <locale.h>
5 #include "libc.h"
6
7 const char *__strftime_fmt_1(char (*s)[100], size_t *l, int f, const struct tm *tm, locale_t loc);
8
9 size_t __wcsftime_l(wchar_t *restrict s, size_t n, const wchar_t *restrict f, const struct tm *restrict tm, locale_t loc)
10 {
11         size_t l, k;
12         char buf[100];
13         wchar_t wbuf[100];
14         wchar_t *p;
15         const char *t_mb;
16         const wchar_t *t;
17         int plus;
18         unsigned long width;
19         for (l=0; l+1<n; f++) {
20                 if (!*f) {
21                         s[l] = 0;
22                         return l;
23                 }
24                 if (*f != '%') {
25                         s[l++] = *f;
26                         continue;
27                 }
28                 f++;
29                 if ((plus = (*f == '+'))) f++;
30                 width = wcstoul(f, &p, 10);
31                 if (*p == 'C' || *p == 'F' || *p == 'G' || *p == 'Y') {
32                         if (!width && p!=f) width = 1;
33                         if (width >= n-l) return 0;
34                 } else {
35                         width = 0;
36                 }
37                 f = p;
38                 if (*f == 'E' || *f == 'O') f++;
39                 t_mb = __strftime_fmt_1(&buf, &k, *f, tm, loc);
40                 if (!t_mb) return 0;
41                 k = mbstowcs(wbuf, t_mb, sizeof wbuf / sizeof *wbuf);
42                 if (k == (size_t)-1) return 0;
43                 t = wbuf;
44                 if (width) {
45                         for (; *t=='+' || *t=='-' || (*t=='0'&&t[1]); t++, k--);
46                         width--;
47                         if (plus && tm->tm_year >= 10000-1900)
48                                 s[l++] = '+';
49                         else if (tm->tm_year < -1900)
50                                 s[l++] = '-';
51                         else
52                                 width++;
53                         if (width >= n-l) return 0;
54                         for (; width > k; width--)
55                                 s[l++] = '0';
56                 }
57                 if (k >= n-l) return 0;
58                 wmemcpy(s+l, t, k);
59                 l += k;
60         }
61         return 0;
62 }
63
64 size_t wcsftime(wchar_t *restrict wcs, size_t n, const wchar_t *restrict f, const struct tm *restrict tm)
65 {
66         return __wcsftime_l(wcs, n, f, tm, 0);
67 }
68
69 weak_alias(__wcsftime_l, wcsftime_l);