Initial commit

This commit is contained in:
2026-01-01 19:58:22 -06:00
commit 5fa19e9d3d
7 changed files with 264 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(NULL);
return EXIT_SUCCESS;
}