I think you must str_create them. STRING is a struct with a number of members. For example a char[] for the contents, a length variable and a pointer to the next element in the internal linked list. str_create is used to initialise all these correctly.

STRING* mystr[3];
mystr[0] = str_create();

Then use it like you would in c-script.