Home
Install
Use
Develop
Support
News
Credits
hosted by
|
30#define UTC_INIT {0,0,0,0,0}
36int str2utc (utc_t *time, const char* str);
37char* utc2str ( char* str, utc_t time, const char* fmt);
38char* utcstrfill ( char* str, utc_t time, int fill_chars);
39int utc_diff (utc_t time1, utc_t time2);
40int utc_inc (utc_t *time, int seconds);
41int utc_dec (utc_t *time, int seconds);
43int tm2utc (utc_t *time, struct tm caltime);
44int utc2tm ( struct tm *caltim, utc_t time);
46int utc_f2LST ( double* lst, utc_t timeutc, double fracsec, float longitude);
47int utc2LST ( double* lst, utc_t timeutc, float east_longitude);
53#define UTC_LEAPYEAR(year) ( ((year)%4 == 0) && \
54 (((year)%100 != 0) || ((year)%400 == 0)) )
55#define UTC_JULIANDAYS(year) ( 365 + ((UTC_LEAPYEAR(year))?1:0) )
Generated using doxygen 1.14.0
|