/contrib/ntp/libntp/calyearstart.c
https://bitbucket.org/freebsd/freebsd-head/ · C · 22 lines · 15 code · 3 blank · 4 comment · 0 complexity · bb422c5b43e86d17625fa1562d04ee64 MD5 · raw file
- /*
- * 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);
- }