1
0
mirror of https://gittea.dev/nova/th.git synced 2025-10-22 02:40:15 -04:00

code base good enough to actually progress

This commit is contained in:
nova
2025-04-17 01:17:13 +02:00
parent 931d7026ea
commit 38338df254
13 changed files with 430 additions and 289 deletions

10
threading.h Normal file
View File

@@ -0,0 +1,10 @@
#include <curses.h>
#include "threading.c"
void *thread_lft(void *data);
void *thread_mid(void *data);
void *thread_rgt(void *data);
void *thread_top(void *data);
void *thread_btm(void *data);
void threading_init();
void threading_free();