00001 /* local.h 00002 * 00003 */ 00004 00005 #ifndef _LOCAL_H 00006 #define _LOCAL_H 00007 00008 #include <time.h> 00009 00010 typedef struct s_locale { 00011 char tz[32]; 00012 struct s_locale *next; 00013 } LOCALE; 00014 00015 void locale_push(void); 00016 void locale_pop(void); 00017 00018 #endif /* _LOCAL_H */ 00019