11 lines
178 B
C
11 lines
178 B
C
#pragma once
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
void error_crash(const char *msg);
|
|
|
|
void error_warn(const char *msg);
|
|
|
|
void error_log(const char *msg);
|