2026-05-26 22:28:06 -06:00
|
|
|
#include "lae_strings.h"
|
2026-05-26 22:40:20 -06:00
|
|
|
#include "lae_allocator.h"
|
2026-05-26 22:28:06 -06:00
|
|
|
#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;
|
2026-05-26 22:28:06 -06:00
|
|
|
};
|