From 4ada155b930cb5fb96493dff3a5af8809da3b214 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Wed, 10 Jan 2024 16:36:53 -0800 Subject: add comments in both stem and also in my c code --- include/better_string.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/better_string.h') diff --git a/include/better_string.h b/include/better_string.h index a30b7e2..6726b4d 100644 --- a/include/better_string.h +++ b/include/better_string.h @@ -6,11 +6,11 @@ /*! @brief An array implementation of the string data structure */ typedef struct STRING_STRUCT { - /*! length of string */ + /*! @brief length of string */ size_t length; - /*! Size of current value buffer */ + /*! @brief Size of current value buffer */ size_t bufsize; - /*! String used for the */ + /*! @brief String value of struct */ char *value; } string_t; -- cgit