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

9
src/lae_strings.c Normal file
View File

@@ -0,0 +1,9 @@
#include "lae_strings.h"
#include <stdint.h>
#include <stdlib.h>
struct ByteStr {
uint8_t* buf;
size_t len;
size_t cap;
};