From 5e7e9cca7bbaaa490e61f297be3e24b0607b6c48 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Tue, 16 Apr 2024 09:26:11 -0300 Subject: src/string.c: Add new empty file structure --- src/string.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/string.c (limited to 'src/string.c') 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 + +#include "string.h" + + +struct String { + char *bytes; + size_t length; +}; -- cgit v1.2.3