This commit is contained in:
2023-08-13 23:30:26 +02:00
parent 4e69c748f1
commit 3b04af698f
26 changed files with 10601 additions and 75 deletions

15
cworker.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef CWORKER_H_QWERTY
#define CWORKER_H_QWERTY
typedef struct {
} cworker_t;
int cworker_init(cworker_t* worker);
int cworker_detach(cworker_t* worker);
int cworker_configure(cworker_t* worker);
int cworker_build(cworker_t* worker);
int cworker_run(cworker_t* worker);
#endif