mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-20 03:16:10 +00:00
11 lines
355 B
C
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);
|