move __strftime_fmt_1 declaration to time_impl.h
[musl] / src / time / time_impl.h
1 #include <time.h>
2
3 int __days_in_month(int, int);
4 int __month_to_secs(int, int);
5 long long __year_to_secs(long long, int *);
6 long long __tm_to_secs(const struct tm *);
7 const char *__tm_to_tzname(const struct tm *);
8 int __secs_to_tm(long long, struct tm *);
9 void __secs_to_zone(long long, int, int *, long *, long *, const char **);
10 const unsigned char *__map_file(const char *, size_t *);
11 const char *__strftime_fmt_1(char (*)[100], size_t *, int, const struct tm *, locale_t, int);