Luna/kernel/include/std/assert.h

8 lines
332 B
C
Raw Normal View History

2022-09-05 14:13:51 +00:00
#pragma once
2022-10-16 16:23:33 +00:00
#include "panic/Panic.h"
2022-09-05 14:13:51 +00:00
#define STRINGIZE(x) #x
#define STRINGIZE_VALUE_OF(x) STRINGIZE(x)
#define ensure(expr) \
(bool)(expr) || panic("Check failed at " __FILE__ ", line " STRINGIZE_VALUE_OF(__LINE__) ": " #expr)