📄 days.c
字号:
/***
*days.c - static arrays with days from beg of year for each month
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
* contains static arrays used by gmtime and statconv to determine
* date and time values. Shows days from beg of year.
*
*******************************************************************************/
#include <internal.h>
int _lpdays[] = {
-1, 30, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365
};
int _days[] = {
-1, 30, 58, 89, 119, 150, 180, 211, 242, 272, 303, 333, 364
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -