c3po/base/config/config.c

9 lines
199 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;
}
}