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 +++++++++++ src/string.h | 1 + 2 files changed, 12 insertions(+) create mode 100644 src/string.c create mode 100644 src/string.h (limited to 'src') 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; +}; diff --git a/src/string.h b/src/string.h new file mode 100644 index 0000000..2a60e26 --- /dev/null +++ b/src/string.h @@ -0,0 +1 @@ +struct String; -- cgit v1.2.3