void CFileWriter::FileLogWrite()
{
int cur_char;
FILE *out_file;
out_file = fopen(ACCESS_LOG_FILE, "a");
//w: 화일 무조건 생성하고 쓴다 a: 화일 있으면 append 없으면 Create 하고 append
if (out_file == NULL) {
return;
}
fprintf (out_file, "============= test ==================\n");
fprintf (out_file, "%s\n",zzzz);
fprintf (out_file, "================================================\n");
fclose(out_file);
return;
}