Added logging functionality.
This commit is contained in:
parent
c68216afa6
commit
49cced6b4f
22
log.c
Normal file
22
log.c
Normal file
@ -0,0 +1,22 @@
|
||||
#include <stdio.h>
|
||||
#include "log.h"
|
||||
static FILE* file = 0;
|
||||
static char* name;
|
||||
|
||||
void startLog(char* filename)
|
||||
{
|
||||
name = filename;
|
||||
file = fopen(filename, "w");
|
||||
}
|
||||
|
||||
void logLine(char* string)
|
||||
{
|
||||
if (!file) return;
|
||||
fputs(string, file);
|
||||
fputs("\n", file);
|
||||
}
|
||||
|
||||
void endLog()
|
||||
{
|
||||
fclose(file);
|
||||
}
|
Loading…
Reference in New Issue
Block a user