X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Ftime%2Fstrftime.c;h=bc150139ee309b4990c9ad29041d8dd5f585c739;hb=6739b13a172aad9c01572c04cadacc99c7041811;hp=48f6532085ee4b4c6e376edf3d6ad26de565543f;hpb=d78be392e144c338f58ce6a51d82c859126c137d;p=musl diff --git a/src/time/strftime.c b/src/time/strftime.c index 48f65320..bc150139 100644 --- a/src/time/strftime.c +++ b/src/time/strftime.c @@ -6,6 +6,7 @@ #include #include #include "libc.h" +#include "time_impl.h" const char *__nl_langinfo_l(nl_item, locale_t); @@ -80,8 +81,8 @@ const char *__strftime_fmt_1(char (*s)[100], size_t *l, int f, const struct tm * fmt = "%m/%d/%y"; goto recu_strftime; case 'e': - val = tm->tm_mday; - goto number; + *l = snprintf(*s, sizeof *s, "%2d", tm->tm_mday); + return *s; case 'F': fmt = "%Y-%m-%d"; goto recu_strftime; @@ -123,6 +124,9 @@ const char *__strftime_fmt_1(char (*s)[100], size_t *l, int f, const struct tm * case 'R': fmt = "%H:%M"; goto recu_strftime; + case 's': + val = __tm_to_secs(tm) + tm->__tm_gmtoff; + goto number; case 'S': val = tm->tm_sec; goto number; @@ -212,7 +216,7 @@ size_t __strftime_l(char *restrict s, size_t n, const char *restrict f, const st const char *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 = __strftime_fmt_1(&buf, &k, *f, tm, loc); - if (!t) return 0; + if (!t) break; if (width) { for (; *t=='+' || *t=='-' || (*t=='0'&&t[1]); t++, k--); width--; @@ -243,14 +246,17 @@ size_t __strftime_l(char *restrict s, size_t n, const char *restrict f, const st s[l++] = '-'; else width++; - if (width >= n-l) return 0; - for (; width > k; width--) + for (; width > k && l < n; width--) s[l++] = '0'; } - if (k >= n-l) return 0; + if (k > n-l) k = n-l; memcpy(s+l, t, k); l += k; } + if (n) { + if (l==n) l=n-1; + s[l] = 0; + } return 0; }