14 lines
231 B
C++
14 lines
231 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);
|
||
|
}
|
||
|
}
|