A3 🎉
This commit is contained in:
21
A2/job_queue.c
Normal file
21
A2/job_queue.c
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user