aboutsummaryrefslogblamecommitdiff
path: root/src/common/include/debug.h
blob: a4b8b6fff35ce28fdc688789db3c9371ea9e5fef (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                     
#pragma once

#include <stddef.h>
#include <stdint.h>

void panic(const char* message, const char* file, int line);
void panic_assert(const char* assertion, const char* file, int line);
#define PANIC(s) panic(s, __FILE__, __LINE__);
#define ASSERT(s) { if (!(s)) panic_assert(#s, __FILE__, __LINE__); }

void dbg_print(const char* str);
void dbg_printf(const char* format, ...);

/* vim: set ts=4 sw=4 tw=0 noet :*/