summaryrefslogtreecommitdiffstats
path: root/src/lib/utc-offset.h
blob: a2196f3ea103db15a7c59fa6f83e0f3fc7330ffc (plain)
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