00001 #ifndef TSTAMP_H
00002 #define TSTAMP_H
00003
00004
00005
00014
00015
00016 #ifdef __cplusplus
00017 namespace RazorBack { extern "C" {
00018 #endif
00019
00020
00021
00028 typedef enum { TS_UTIME=1, TS_STIME=2, TS_CUTIME=4, TS_CSTIME=8 } TsSelector_;
00029
00030
00031
00039 char *time_stamp(void);
00040
00050 char *greeting(void);
00051
00060 long julian_date(unsigned int Day, unsigned int Month, int Year);
00061
00062
00063
00069 void start_timer(void);
00070
00076 void stop_timer(void);
00077
00089 long timer_results(int Sel);
00090
00099 const char *time_string(long T);
00100
00101 #ifdef __cplusplus
00102 } }
00103 #endif
00104
00105
00106 #endif