lcltime_r.c

来自「KPIT GNU Tools is a set of GNU developme」· C语言 代码 · 共 19 行

C
19
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?