This commit is contained in:
Nikolaj
2021-12-16 14:04:17 +01:00
parent 066ca1ca8a
commit 281b65339c
19 changed files with 1359 additions and 0 deletions

9
A5/support.c Normal file
View File

@ -0,0 +1,9 @@
#include <stdio.h>
#include <stdlib.h>
#include "support.h"
void error(const char* message) {
fprintf(stderr, "%s\n", message);
exit(-1);
}