feat(c): extrude lib c

This commit is contained in:
2025-03-12 23:19:45 +01:00
parent 493900d9ea
commit bd96f363c5
11 changed files with 266 additions and 26 deletions
+12
View File
@@ -0,0 +1,12 @@
#include <assert.h>
#include <stdio.h>
#include "heclib.h"
void test_function() {
}
int main(void) {
test_function();
printf("All tests passed\n");
return 0;
}