From dc523c8d3c39ec186a88a95d4750e4b3845e1f1c Mon Sep 17 00:00:00 2001 From: Sebastiaan de Schaetzen Date: Sun, 26 Apr 2026 22:42:08 +0200 Subject: [PATCH] chore: remove legacy v0/string.h --- v0/string.h | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 v0/string.h diff --git a/v0/string.h b/v0/string.h deleted file mode 100644 index 34fa715..0000000 --- a/v0/string.h +++ /dev/null @@ -1,20 +0,0 @@ -/** - * Contains the definition of the String structure, which is a simple representation of a string in C. - */ -#ifndef STRING_H -#define STRING_H - -#include - -/** - * A simple string structure that holds a pointer to the character data and its length. - */ -typedef struct { - /// @brief A pointer to the character data of the string. - char* data; - - /// @brief The length of the string. - size_t length; -} String; - -#endif \ No newline at end of file