This commit is contained in:
The Arrayser 2022-08-30 12:31:37 +02:00 committed by GitHub
parent 4cf7349d51
commit d8145a8cc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,3 +39,7 @@ void * sus_heapResize(void * memroy, size_t newBytes); // returns NULL, if there
void sus_heapFree(void * memroy); // what should this function do, if an error occurse..
// Networking API -- coming soon, cuz idk
//Threads
sus_Bool sus_threadNew(int (*proc)(int arg), int arg);
void sus_threadSleep(unsigned long seconds);