Initial commit

This commit is contained in:
2026-02-02 19:18:03 -06:00
commit b12d5ed230
7 changed files with 261 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. These two tests are supposed to fail!!\n");
ASSERTED(NULL);
return EXIT_SUCCESS;
}