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();
|