// // File: // // simple library to create timestamps for log files // // Written by: David M. Stanhope // #ifndef _TIMESTAMP_H_ #define _TIMESTAMP_H_ 1 #define RIGHT_NOW time(NULL) extern char *time_string_time_t(time_t t); extern char *time_string_str(char *ts); extern char *timestamp(void); extern char *web_timestamp(void); #endif // _TIMESTAMP_H_ // // The End! //