Add error types and simple state

This commit is contained in:
2022-10-28 16:08:40 -04:00
parent fd91e66b8a
commit ed173bd17a
14 changed files with 302 additions and 89 deletions

View File

@@ -1,7 +1,10 @@
#include <stdio.h>
#include "nihilispm.h"
#include "nihilispm_state.h"
int main(int argc, const char **argv) {
(void) argc, (void) argv;
struct nl_state *state = nl_state_create();
return 0;
}