⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lcltime_r.c

📁 用于嵌入式Linux系统的标准C的库函数
💻 C
字号:
/* * localtime_r.c * * Converts the calendar time pointed to by tim_p into a broken-down time * expressed as local time. Returns a pointer to a structure containing the * broken-down time. */#include <time.h>#include "local.h"struct tm *_DEFUN (localtime_r, (tim_p, res),	_CONST time_t * tim_p _AND	struct tm *res){  return _mktm_r (tim_p, res, 0);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -