Files
cworker/cworker.h
2023-08-15 08:35:06 +02:00

20 lines
347 B
C

#ifndef CWORKER_H_QWERTY
#define CWORKER_H_QWERTY
#include <stdint.h>
typedef struct {
int64_t port;
} cworker_t;
int cworker_init(cworker_t* worker, char** argv, int argc);
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