From cd290d6f6a8b9a3ff85fa51d6bca8533f5911e6f Mon Sep 17 00:00:00 2001 From: Ges-AUCA <122356960+Ges-AUCA@users.noreply.github.com> Date: Tue, 16 May 2023 11:13:51 +0600 Subject: [PATCH] FIx PCS project desription. --- Projects.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);