Hi,
I found this and saved it when i was browsing the forum.
Havent used it yet but thought it could be usefull.
//ARRAY of STRINGS
STRING** tst;
tst = malloc((long) sizeof(STRING*) * number of elements);
//tst = malloc((int) sizeof(STRING*) * number of elements);
for(int i=0;i<number of elements;i++)
tst[i]=str_create("#number of characters");
//now you can access the string array like this:
str_cpy(tst[0],"hallo");
hope this is what you need?