Files
Strings/src/lae_strings.c

13 lines
193 B
C

#include "lae_strings.h"
#include "lae_allocator.h"
#include <stdint.h>
#include <stdlib.h>
struct ByteStr {
uint8_t* buf;
size_t len;
size_t cap;
Allocator allocator;
};