10 lines
207 B
C
10 lines
207 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 joeyLogReset(void);
|
|
|
|
#endif
|