mirror of
https://gittea.dev/nova/th.git
synced 2025-10-21 10:20:15 -04:00
11 lines
240 B
C
11 lines
240 B
C
#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();
|