asctime.c

来自「linux下用PCMCIA无线网卡虚拟无线AP的程序源码」· C语言 代码 · 共 16 行

C
16
字号
#include <time.h>extern void __asctime();char *asctime(timeptr)__const struct tm *timeptr;{	static char timebuf[26];	if (timeptr == 0)		return 0;	__asctime(timebuf, timeptr);	return timebuf;}

⌨️ 快捷键说明

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