sgl

view src/log.c @ 4:648f8604d2b2

cont. x11 module
author John Tsiombikas <nuclear@siggraph.org>
date Thu, 12 May 2011 11:04:10 +0300
parents
children 0570e27e5ebc
line source
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <stdarg.h>
4 #include "log.h"
6 void sgl_log(const char *fmt, ...)
7 {
8 va_list ap;
9 const char *logfile;
10 FILE *fp;
12 if(!(logfile = getenv("SGL_LOG")) || !(fp = fopen(logfile, "a"))) {
13 fp = stderr;
14 }
16 va_start(ap, fmt);
17 vfprintf(fp, fmt, ap);
18 va_end(ap);
20 fclose(fp);
21 }