2005-12-24 04:23:28 +00:00

11 lines
355 B
C

// textfile.h: interface for reading and writing text files
// www.lighthouse3d.com
//
// You may use these functions freely.
// they are provided as is, and no warranties, either implicit,
// or explicit are given
//////////////////////////////////////////////////////////////////////
char *textFileRead(char *fn);
int textFileWrite(char *fn, char *s);