calyearstart.c
来自「网络时间协议NTP 源码 版本v4.2.0b 该源码用于linux平台下」· C语言 代码 · 共 23 行
C
23 行
/* * 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_longcalyearstart(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);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?