kolibrios/contrib/media/updf/include/log.h
right-hearted 4f7ee97ec9 uPDF with buttons
git-svn-id: svn://kolibrios.org@4680 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-03-22 21:00:40 +00:00

38 lines
546 B
C

#ifndef __log_h__
#define __log_h__
#ifdef YACAS_LOGGING // DEBUG
#include <stdarg.h>
#include <stdio.h>
#endif
inline void LogPrintf(char* str,...)
{
#ifdef YACAS_LOGGING // DEBUG
va_list arg;
char buf[256];
va_start (arg, str);
vsprintf (buf, str, arg);
va_end (arg);
printf(buf);
#endif
}
inline void LogErrorPrintf(char* str,...)
{
#ifdef YACAS_LOGGING // DEBUG
printf("ERROR: ");
va_list arg;
char buf[256];
va_start (arg, str);
vsprintf (buf, str, arg);
va_end (arg);
printf(buf);
exit(0);
#endif
}
#endif