asctime_r.c
来自「linux下用PCMCIA无线网卡虚拟无线AP的程序源码」· C语言 代码 · 共 16 行
C
16 行
#include <time.h>extern void __asctime();char *asctime_r(timeptr, buf)__const struct tm *timeptr;char *buf;{ if (timeptr == 0) return 0; __asctime(buf, timeptr); return buf;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?