2002-08-15 21:00:51 +00:00
|
|
|
#ifndef __ruamoko_crudefile_h
|
|
|
|
#define __ruamoko_crudefile_h
|
2002-08-15 06:56:37 +00:00
|
|
|
|
2011-06-14 17:08:48 +00:00
|
|
|
/**
|
|
|
|
\defgroup crudefile Crudefile Functions
|
|
|
|
\{
|
|
|
|
*/
|
2010-12-01 23:04:18 +00:00
|
|
|
@extern float cfopen (string path, string mode);
|
|
|
|
@extern void cfclose (float desc);
|
|
|
|
@extern string cfread (float desc);
|
|
|
|
@extern float cfwrite (float desc, string buf);
|
|
|
|
@extern float cfeof (float desc);
|
|
|
|
@extern float cfquota (void);
|
2002-08-15 06:56:37 +00:00
|
|
|
|
2011-06-14 17:08:48 +00:00
|
|
|
/**
|
|
|
|
\}
|
|
|
|
*/
|
2002-08-15 21:00:51 +00:00
|
|
|
#endif//__ruamoko_crudefile_h
|