Initial revision of Arena Live - Plugin
[ArenaLive.git] / common.c
blobfef934be42c5b386011aa4a06d9286350640307b
2 #include <stdio.h>
3 #include <stdarg.h>
5 void Log(const char* c,...)
7 va_list al;
8 FILE*f=fopen("/home/tomas/glugin/glugin.log","a");
9 if(!f)return;
10 va_start(al,c);
11 vfprintf(f,c,al);
12 va_end(al);
13 fputc('\n',f);
14 fclose(f);