0 Members and 1 Guest are viewing this topic.
FILE *test;test = fopen("file.tns", "rt");char line[80];while(fgets(line, 80, test) != NULL) { displn(line,1); //Display string with newline}fclose(test);
FILE *test;test = fopen("/documents/devel/file.tns", "rt");char line[80];while(fgets(line, 80, test) != NULL) { displn(line,1); //Display string with newline}fclose(test);
I've looked at the sources, but they are confusing.
I don't understand the source at all either