diff --git a/Projects.md b/Projects.md index db32524..76d2ca5 100644 --- a/Projects.md +++ b/Projects.md @@ -19,8 +19,9 @@ The string should have the following definitions: ```c typedef struct { - char* data; int length; + int capacity; + char* data; } my_string; void my_string_init(my_string* str, const char* input);