sgl

view src/log.c @ 5:0570e27e5ebc

pretty much done with the basic functionality and GLX shit
author John Tsiombikas <nuclear@siggraph.org>
date Fri, 13 May 2011 07:49:47 +0300
parents 648f8604d2b2
children 124195562f7e
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 if(fp != stderr) {
21 fclose(fp);
22 }
23 }