ctime.c

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

C
54
字号
/* * ctime.c * Original Author:	G. Haley *//*FUNCTION<<ctime>>---convert time to local and format as stringINDEX	ctimeANSI_SYNOPSIS	#include <time.h>	char *ctime(const time_t *<[clock]>);	char *ctime_r(const time_t *<[clock]>, char *<[buf]>);TRAD_SYNOPSIS	#include <time.h>	char *ctime(<[clock]>)	time_t *<[clock]>;	char *ctime_r(<[clock]>, <[buf]>)	time_t *<[clock]>;	char *<[buf]>;DESCRIPTIONConvert the time value at <[clock]> to local time (like <<localtime>>)and format it into a string of the form. Wed Jun 15 11:38:07 1988\n\0(like <<asctime>>).RETURNSA pointer to the string containing a formatted timestamp.PORTABILITYANSI C requires <<ctime>>.<<ctime>> requires no supporting OS subroutines.*/#include <time.h>#ifndef _REENT_ONLYchar *_DEFUN (ctime, (tim_p),	_CONST time_t * tim_p){  return asctime (localtime (tim_p));}#endif

⌨️ 快捷键说明

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