joeylib2/include/joey/debug.h

11 lines
232 B
C

// Crash-tracing logger. See src/core/debug.c.
#ifndef JOEYLIB_DEBUG_H
#define JOEYLIB_DEBUG_H
void joeyLog (const char *msg);
void joeyLogF (const char *fmt, ...);
void joeyLogFlush(void);
void joeyLogReset(void);
#endif