diff options
Diffstat (limited to 'src/string.c')
-rw-r--r-- | src/string.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/string.c b/src/string.c new file mode 100644 index 0000000..6e1ba40 --- /dev/null +++ b/src/string.c @@ -0,0 +1,11 @@ +#include "config.h" + +#include <stddef.h> + +#include "string.h" + + +struct String { + char *bytes; + size_t length; +}; |