12 lines
232 B
C
12 lines
232 B
C
// this code is licenced under Wrathmark licence
|
|
// © 2026 wullie wulliestudio.com
|
|
// please see attached licence for full usage and rights
|
|
|
|
#ifndef ERROR_H
|
|
#define ERROR_H
|
|
|
|
void safeError(char *error);
|
|
void riskyError();
|
|
|
|
#endif
|