Files
Strings/src/lae_strings.c

13 lines
193 B
C
Raw Normal View History

#include "lae_strings.h"
2026-05-26 22:40:20 -06:00
#include "lae_allocator.h"
#include <stdint.h>
#include <stdlib.h>
struct ByteStr {
uint8_t* buf;
size_t len;
size_t cap;
2026-05-26 22:40:20 -06:00
Allocator allocator;
};