Initial commit and conversion

This commit is contained in:
2026-02-15 10:45:05 -06:00
commit d3d47076f1
7 changed files with 324 additions and 0 deletions

14
tests/01_sanity.c Normal file
View File

@@ -0,0 +1,14 @@
#define DEBUG
#include "../include/except.h"
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
int main(void){
printf("\n\n");
printf("Assertion sanity test.\n");
assert(NULL);
return EXIT_SUCCESS;
}