22 lines
388 B
C
22 lines
388 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <assert.h>
|
|
|
|
#include "job_queue.h"
|
|
|
|
int job_queue_init(struct job_queue *job_queue, int capacity) {
|
|
assert(0);
|
|
}
|
|
|
|
int job_queue_destroy(struct job_queue *job_queue) {
|
|
assert(0);
|
|
}
|
|
|
|
int job_queue_push(struct job_queue *job_queue, void *data) {
|
|
assert(0);
|
|
}
|
|
|
|
int job_queue_pop(struct job_queue *job_queue, void **data) {
|
|
assert(0);
|
|
}
|