00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef _lib_h
00017 #define _lib_h
00018
00019 #include "clib.h"
00020
00021 #include <string.h>
00022
00023 #if TIME_WITH_SYS_TIME
00024 # include <sys/time.h>
00025 # include <time.h>
00026 #else
00027 # if HAVE_SYS_TIME_H
00028 # include <sys/time.h>
00029 # else
00030 # include <time.h>
00031 # endif
00032 #endif
00033
00034
00035
00036
00037 #define OK 0
00038 #define NOTOK (-1)
00039
00040
00041
00042
00043
00044 extern "C" char *Htstrptime(char *buf, char *fmt, struct tm *tm);
00045
00046
00047
00048
00049 extern "C" time_t Httimegm(struct tm *tm);
00050
00051 #endif