amiga-tz/library/time_local.h

26 lines
551 B
C

#ifndef _TIME_LOCAL_H
#define _TIME_LOCAL_H
#include "time_header.h"
struct lc_time_T {
const char* mon[MONSPERYEAR];
const char* month[MONSPERYEAR];
const char* wday[DAYSPERWEEK];
const char* weekday[DAYSPERWEEK];
const char* X_fmt;
const char* x_fmt;
const char* c_fmt;
const char* am;
const char* pm;
const char* date_fmt;
locale_t locale;
};
extern const struct lc_time_T C_time_locale;
struct lc_time_T* openlc(locale_t locale);
void closelc(struct lc_time_T *lc);
#endif