change the way string arrays are initialized

This commit is contained in:
2021-07-16 13:35:29 -04:00
parent 1b68196f16
commit e548acdb8a
3 changed files with 25 additions and 27 deletions

View File

@@ -27,7 +27,7 @@ typedef struct {
size_t size;
} CleanArray;
void create_string_array(StringArray *string_array);
StringArray *create_string_array();
void insert_string_array(StringArray *string_array, char *string);