caos-with-snake/console.h

6 lines
175 B
C

#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");}