stoneage8.5/石器时代8.5客户端最新源代码/石器源码/system/test.cpp

14 lines
231 B
C++
Raw Normal View History

2020-06-23 15:27:59 +08:00
#include "../systeminc/version.h"
#include <stdio.h>
#include "test.h"
void test(char *data)
{
FILE *logfile;
logfile = fopen("test.txt","a+");
if(logfile)
{
fprintf(logfile,"%s\n",data);
fclose(logfile);
}
}