summaryrefslogtreecommitdiff
path: root/include/tinyff/dbg.h
blob: 3fac9314df93e6d7ab53564f9e6a2b1022ecada6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef DBG_H
#define DBG_H

// Debug writes extra messages to a stream of the user's choice
// To enable debug, the user needs to include this header
// Then they can use the ff_set_debug_stream function to set the stream
// And then use ff_dprintf to print debug messages
// By default, debug is disabled


#define FF_DEBUG_ENABLED 1

#include <tinyff/result.h>
#include <tinyff/common.h>
#include <tinyff/stream.h>


// Sets the debug stream. If stream is NULL, debug is disabled.
ff_result ff_set_debug_stream(ff_stream* stream, ff_ctx* ctx);

// Prints a string to the debug stream if debug is enabled.
// Note: I removed stdarg. That crap nearly made me kill myself.
// 0/10, would not recommend. Jokes on you though, I don't have a soul to kill.
ff_result ff_dprintf(ff_ctx* ctx, const char *msg);

#endif