tinygi

view src/logger.c @ 2:72752a1b3dbe

images and shapes
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 21 Jul 2015 04:30:00 +0300
parents
children
line source
1 #include <stdio.h>
2 #include <stdarg.h>
3 #include "logger.h"
5 void tgi_log(const char *fmt, ...)
6 {
7 va_list ap;
9 va_start(ap, fmt);
10 vfprintf(stderr, fmt, ap);
11 va_end(ap);
12 }