diff options
author | Ollivier Robert <roberto@FreeBSD.org> | 2008-08-17 17:37:33 +0000 |
---|---|---|
committer | Ollivier Robert <roberto@FreeBSD.org> | 2008-08-17 17:37:33 +0000 |
commit | cce65f439697627afbccf5a67035a957bb4d784a (patch) | |
tree | 16d100fbc9dae63888d48b464e471ba0e5065193 /libntp/calyearstart.c | |
parent | 8c24a1e0ffd629427f94da1b681600008030c41a (diff) |
Notes
Diffstat (limited to 'libntp/calyearstart.c')
-rw-r--r-- | libntp/calyearstart.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libntp/calyearstart.c b/libntp/calyearstart.c new file mode 100644 index 000000000000..0f7ca4f9d065 --- /dev/null +++ b/libntp/calyearstart.c @@ -0,0 +1,22 @@ +/* + * calyearstart - determine the NTP time at midnight of January 1 in + * the year of the given date. + */ +#include <sys/types.h> + +#include "ntp_types.h" +#include "ntp_calendar.h" +#include "ntp_stdlib.h" + +u_long +calyearstart(u_long ntp_time) +{ + struct calendar jt; + + caljulian(ntp_time,&jt); + jt.yearday = 1; + jt.monthday = 1; + jt.month = 1; + jt.hour = jt.minute = jt.second = 0; + return caltontp(&jt); +} |