Files
Strings/src/lae_strings.c

10 lines
140 B
C
Raw Normal View History

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