Upload files to "include/stdWullie"

This commit is contained in:
2026-08-11 21:09:15 +00:00
parent 365c7c5a02
commit eead1718c0
2 changed files with 26 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
// 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
+15
View File
@@ -0,0 +1,15 @@
// this code is licenced under Wrathmark licence
// © 2026 wullie wulliestudio.com
// please see attached licence for full usage and rights
// deals with time shit like sleeping and getting the unix epoch
#ifndef TIME_H
#define TIME_H
#include "stdWullie/definitions/timespec.h"
void sleeper(long seconds);
int unixTime();
#endif