blob: 18125dc16c16b1b829ffa28a5921cc2e6a2edfa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef IS_DEBUG_H
#define IS_DEBUG_H
#include "stddef.h"
#include "attributes.h"
#if DEBUG_FEATURES
void isPrintfInit(void);
#endif
void rmonPrintf(const char* fmt, ...);
#if DEBUG_FEATURES
void* is_proutSyncPrintf(void* arg, const char* str, size_t count);
NORETURN void func_80002384(const char* exp, const char* file, int line);
#endif
#endif
|