📄 whattime.c
字号:
/*
whattime.c
For Free Chat
By Bill Kendrick
kendrick@zippy.sonoma.edu
http://zippy.sonoma.edu/kendrick/
September 29, 1996 - June 10, 1997
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "whattime.h"
#include "defines.h"
void whattime(char * buf)
{
FILE * pi;
char temp[STRLEN];
pi = popen(DATE_CMD, "r");
if (pi != NULL)
{
fscanf(pi, "%s %s %s %s", temp, temp, temp, buf);
pclose(pi);
}
else
strcpy(buf, "??:??:??");
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -