diff options
Diffstat (limited to 'include/jobid.h')
-rw-r--r-- | include/jobid.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/jobid.h b/include/jobid.h new file mode 100644 index 0000000..980c85c --- /dev/null +++ b/include/jobid.h @@ -0,0 +1,16 @@ +#include <stdint.h> + +#include "jobs.h" + +#ifndef SOLVER_UTIL_H + +struct jobid { + struct job **jobs; + size_t filled, size; +}; + +void jobid_free(struct jobid *jid); +int jobid_init(struct job_clist *q, struct jobid **jobid); + +#define SOLVER_UTIL_H +#endif |