blob: 6ae550af2c4b15a0cd1819146b16982c30635537 [file] [log] [blame]
akmhoque8fdd6412012-12-04 15:05:33 -06001#ifndef _UTILITY_H_
2#define _UTILITY_H_
3
4char * getLocalTimeStamp(void);
5char * getGmTimeStamp(void);
6long int get_current_time_sec(void);
7void get_current_timestamp_micro(char * microSec);
8long int get_time_diff(const char *time1, const char *time2);
9
10void startLogging(char *loggingDir);
11void writeLogg(const char *source_file, const char *function, const int line, const char *format, ...);
12#endif