Initial commit, first project from 0 with xmake

This commit is contained in:
2026-05-26 22:28:06 -06:00
commit 910f63bf07
6 changed files with 192 additions and 0 deletions

11
test/test_string.c Normal file
View File

@@ -0,0 +1,11 @@
#include <cmocka.h>
#include <setjmp.h>
#include <stdarg.h> /* required by cmocka */
#include <stddef.h>
#include <stdlib.h>
#include "lae_strings.h"
int main(void) {
return EXIT_SUCCESS;
}