Initial commit

This commit is contained in:
2026-02-27 18:57:44 -06:00
commit b64aa67741
7 changed files with 340 additions and 0 deletions

13
tests/01_sanity.c Normal file
View File

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