This commit is contained in:
Nikolaj
2021-10-26 14:15:16 +02:00
parent b57db9596c
commit a988405fd3
10 changed files with 616 additions and 0 deletions

21
A2/job_queue.c Normal file
View File

@@ -0,0 +1,21 @@
#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);
}