mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +00:00
9 lines
236 B
C
9 lines
236 B
C
#ifndef __file_h
|
|
#define __file_h
|
|
|
|
//FIXME need a proper file struct, string sucks
|
|
@extern string (string path, string mode) File_Open;
|
|
@extern void (string file) File_Close;
|
|
@extern string (string file) File_GetLine;
|
|
|
|
#endif//__file_h
|