1
0
mirror of https://gittea.dev/nova/th.git synced 2025-10-21 18:30:15 -04:00
Files
th/threading.h
2025-08-18 22:01:16 +02:00

15 lines
296 B
C

#include <curses.h>
#ifndef THREADING_GUARD
#define THREADING_GUARD
#include "threading.c"
#endif
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();