Argument parsing

This commit is contained in:
2026-05-24 23:24:25 -07:00
parent 68bc009fe9
commit 6ba105a14b
7 changed files with 232 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef INCLUDED_THREAD_POOL_H
#define INCLUDED_THREAD_POOL_H
typedef struct _ThreadPool ThreadPool;
typedef void (*Task)(void *);
ThreadPool *make_thread_pool(int parallelism);
void destroy_thread_pool(ThreadPool *pool);
void thread_pool_enqueue(Task task, void *arg);
#endif