swissChili | 0b35bf2 | 2021-02-18 12:49:40 -0800 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include "kint.h" |
| 4 | |
| 5 | void kprintf(const char *format, ...); |
| 6 | void kassert_int(bool condition, const char *message, const char *file, const int line); |
| 7 | |
| 8 | #define kassert(cond, msg) kassert_int((cond), (msg), __FILE__, __LINE__) |