From 9edded0c71995bb4cbc8758d0bdad1cdb0978abb Mon Sep 17 00:00:00 2001 From: superp00t Date: Wed, 29 Apr 2026 03:07:52 -0400 Subject: [PATCH] feat(profile): add char array --- .../include/storm/array/pointer_to_char.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 profile/3.3.5a-windows-386/include/storm/array/pointer_to_char.h diff --git a/profile/3.3.5a-windows-386/include/storm/array/pointer_to_char.h b/profile/3.3.5a-windows-386/include/storm/array/pointer_to_char.h new file mode 100644 index 0000000..1235eca --- /dev/null +++ b/profile/3.3.5a-windows-386/include/storm/array/pointer_to_char.h @@ -0,0 +1,12 @@ +#ifndef STORM_ARRAY_POINTER_TO_CHAR_H +#define STORM_ARRAY_POINTER_TO_CHAR_H + +#include "system/types.h" + +#include "storm/array.h" + +typedef char* pointer_to_char; + +STORM_TS_GROWABLE_ARRAY(pointer_to_char); + +#endif