1 2 3 4 5 6 7 8 9
#ifndef UTC_OFFSET_H #define UTC_OFFSET_H #include <time.h> /* Returns given time's offset to UTC in minutes. */ int utc_offset(struct tm *tm, time_t t); #endif