caos-with-snake/console.h

10 lines
413 B
C
Raw Normal View History

2023-01-13 12:56:54 +04:00
#pragma once
void printk(const char *msg);
_Noreturn void panic(const char *msg);
#define check(expr) \
if (!(expr)) { \
panic("Assertion failed at " __FILE__ " : " \
" : " #expr "\n"); \
}