feat(c): extrude lib c

This commit is contained in:
2025-03-12 23:19:45 +01:00
parent cbba9016cd
commit 58fc204f46
11 changed files with 266 additions and 26 deletions

12
package/c/lib/test/test.c Normal file
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;
}