11 lines
217 B
C
11 lines
217 B
C
#include "config.h"
|
|
|
|
void* init() {
|
|
if((config = malloc(sizeof(CONFIG))) == NULL) {
|
|
fprintf(stderr, "[CONFIG] First malloc failed. Let's just give up :D\n");
|
|
return NULL;
|
|
}
|
|
|
|
return NULL;
|
|
}
|