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

📄 ctime.c

📁 标准c库代码,可以应用于各个系统提供了大量的基本函数
💻 C
字号:
/* * ctime.c * Original Author:	G. Haley *//*FUNCTION<<ctime>>---convert time to local and format as stringINDEX	ctimeANSI_SYNOPSIS	#include <time.h>	char *ctime(time_t <[timp]>);TRAD_SYNOPSIS	#include <time.h>	char *ctime(<[timp]>)	time_t <[timp]>;DESCRIPTIONConvert the time value at <[timp]> 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>char *_DEFUN (ctime, (tim_p),	_CONST time_t * tim_p){  return asctime (localtime (tim_p));}

⌨️ 快捷键说明

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