rework langinfo code for ABI compat and for use by time code
[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 int __secs_to_tm(long long, struct tm *);
8 void __secs_to_zone(long long, int, int *, long *, long *, const char **);
9 const unsigned char *__map_file(const char *, size_t *);