Thanks guys, that is helpful.
At the moment, I have a file that has strings in a row, for example in test.txt we have:
Hello world, Hello my friend
The comma is the delimiter. I just want to put those two strings into my string array in the 0 and 1 index. But I'm not sure how to increment through the strings:
while ( (file_str_read(fhandle, test_str)) != -1)
{
file_str_read(fhandle, test_str);
dialog[count] = test_str;
count += 1;
}
The above doesn't seem to work. Admittedly, I haven't been using file IO in A7 very long. Thanks for any help.
