16 lines
338 B
C
16 lines
338 B
C
// 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
|