1 Star 0 Fork 8

黑皮/Xipkpublib_Update

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
GetSysDate.c 678 Bytes
一键复制 编辑 原始数据 按行查看 历史
suitianmou 提交于 2016-03-17 14:03 . ʼ1.2汾
/*******************************************************
* 公 司: 大连同方软银科技有限公司
* 程 序 名: GetSysDate.c
* 程序功能: 获取机器当前日期
* 输入参数:
* 输出参数:
* Year 年
* Month 月
* Day 日
* 返 回 值:
* 作 者: yangwc
* 开发日期: 2007/1
* 修 改 人:
* 修改日期:
*******************************************************/
#include "kernel/syspub.h"
void GetSysDate(int *Year, int *Month, int *Day)
{
time_t t;
struct tm *local_time;
t = time(0);
local_time = localtime(&t);
*Year = 1900 + local_time->tm_year;
*Month = local_time->tm_mon + 1;
*Day = local_time->tm_mday;
return ;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/LaoGun/Xipkpublib_Update.git
git@gitee.com:LaoGun/Xipkpublib_Update.git
LaoGun
Xipkpublib_Update
Xipkpublib_Update
master

搜索帮助