blob: 980c85cd94494b02517fc5718f693dc4b035e433 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|