blob: 48da93eafeaa5721af864d15da7d1ca1a71a6300 [file] [log] [blame]
swissChili0b35bf22021-02-18 12:49:40 -08001#pragma once
2
3#include "kint.h"
4
5void kprintf(const char *format, ...);
6void 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__)