00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef _ASTERISK_LOCALTIME_H
00015 #define _ASTERISK_LOCALTIME_H
00016
00017 extern int ast_tzsetwall(void);
00018 extern void ast_tzset(const char *name);
00019 extern struct tm *ast_localtime(const time_t *timep, struct tm *p_tm, const char *zone);
00020 extern time_t ast_mktime(struct tm * const tmp, const char *zone);
00021 extern char *ast_ctime(const time_t * const timep);
00022 extern char *ast_ctime_r(const time_t * const timep, char *buf);
00023
00024 #endif