event-system/src/main.c

16 lines
252 B
C

#include "event_system.h"
#include <stdio.h>
#include <stdlib.h>
int main(void) {
EventSystem *es = NULL;
if (es_init(&es, 32, 64) != ES_INIT_SUCCESS) {
printf("INITIALISATION FAILED\n");
return 1;
}
// es_deinit(&es);
return 0;
}