mirror of
https://github.com/nishiowo/nishbox
synced 2025-04-21 20:24:39 +00:00
17 lines
239 B
C
17 lines
239 B
C
#ifndef __NB_THREAD_H__
|
|
#define __NB_THREAD_H__
|
|
|
|
#include <nb_pre.h>
|
|
#include <nb_macro.h>
|
|
|
|
/* Type */
|
|
#include <nb_type/thread.h>
|
|
|
|
/* NishBox */
|
|
|
|
/* Standard */
|
|
|
|
nb_thread_t* nb_create_thread(void (*func)(void*), void* userdata);
|
|
|
|
#endif
|