#include "event_system.h" #include #include 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; }