lisp-take-1/string/struct.h

12 lines
123 B
C

#include <stddef.h>
#include <stdint.h>
struct string
{
uint8_t* data;
size_t n;
unsigned refcount;
};