diff --git a/include/stdWullie/exit.h b/include/stdWullie/exit.h new file mode 100644 index 0000000..1300d22 --- /dev/null +++ b/include/stdWullie/exit.h @@ -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 diff --git a/include/stdWullie/time.h b/include/stdWullie/time.h new file mode 100644 index 0000000..549e388 --- /dev/null +++ b/include/stdWullie/time.h @@ -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