joeylib2/include/joey/debug.h

11 lines
224 B
C

// Crash-tracing logger. See src/core/debug.c.
#ifndef JOEYLIB_DEBUG_H
#define JOEYLIB_DEBUG_H
void jlLog (const char *msg);
void jlLogF (const char *fmt, ...);
void jlLogFlush(void);
void jlLogReset(void);
#endif