/**strio.c: string/file manipulation functions by Victor Rachels **/ #include #include #include "cfile.h" #include "strio.h" //added on 9/16/98 by adb to add memory tracking for this module #include "u_mem.h" //end additions - adb char *fgets_unlimited(PHYSFS_file *f) { int mem = 256; char *word, *buf, *p; MALLOC(word, char, mem); p = word; while (word && cfgets(p, mem, f) == word + mem) { int i; // Make a bigger buffer, because it read to the end of the buffer. buf = word; mem *= 2; MALLOC(word, char, mem); for (i = 0; i < mem/2; i++) word[i] = buf[i]; d_free(buf); p = word + mem/2; } return word; } char* splitword(char *s, char splitchar) { int x,l,l2; char *word; for(l=0;s[l]!=0;l++); for(x=0;s[x]!=splitchar&&x