1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#pragma once
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
void sys_panic(const char* message, const char* file, int line)
__attribute__((__noreturn__));
void sys_panic_assert(const char* assertion, const char* file, int line)
__attribute__((__noreturn__));
#define PANIC(s) sys_panic(s, __FILE__, __LINE__);
//#define ASSERT(s) { if (!(s)) sys_panic_assert(#s, __FILE__, __LINE__); }
static inline void _kogata_assert(bool s, const char* ss, const char* ff, int l) {
if (!s) sys_panic_assert(ss, ff, l);
}
#define ASSERT(s) _kogata_assert((s), #s, __FILE__, __LINE__)
void dbg_print(const char* str);
void dbg_printf(const char* format, ...);
/* vim: set ts=4 sw=4 tw=0 noet :*/
|