stoneage8.5/石器时代8.5客户端最新源代码/石器源码/system/test.cpp
2020-06-23 15:53:23 +08:00

14 lines
234 B
C++

#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);
}
}