1 #ifndef SARTIME_H
2 #define SARTIME_H
3 
4 #include <sys/types.h>
5 
6 extern time_t SARGetCurMilliTime(void);
7 
8 extern unsigned int SARRandom(unsigned int seed_offset);
9 extern float SARRandomCoeff(unsigned int seed_offset);
10 
11 extern int SARParseTimeOfDay(
12 	const char *string,
13 	int *h, int *m, int *s
14 );
15 extern int SARParseLatitudeDMS(const char *string, float *dms);
16 extern int SARParseLongitudeDMS(const char *string, float *dms);
17 
18 #endif	/* SARTIME_H */
19