This commit is contained in:
2026-02-05 16:11:51 +01:00
parent dcbd6de602
commit b400d34574
8 changed files with 87 additions and 2 deletions
@@ -0,0 +1,15 @@
#include <stdio.h>
#include <stdlib.h>
char **insert_string(char **strings_array, int *array_size, char *insert_str, int index){
char **rslt = malloc(array_size + 1 * sizeof(char));
int index = 0;
while (*(strings_array + index)){
}
}