2021-08-12 23:06:58 -04:00
|
|
|
/* fileio.h -- file primitives */
|
2013-05-17 10:58:27 -04:00
|
|
|
#ifndef _FILEIO_H_
|
|
|
|
#define _FILEIO_H_
|
|
|
|
|
2013-06-09 05:31:28 -04:00
|
|
|
typedef enum {
|
2021-08-12 23:06:58 -04:00
|
|
|
FIOSUC, /* File I/O, success. */
|
|
|
|
FIOFNF, /* File I/O, file not found. */
|
|
|
|
FIOEOF, /* File I/O, end of file. */
|
|
|
|
FIOERR, /* File I/O, error. */
|
|
|
|
FIOMEM /* File I/O, out of memory */
|
2013-06-09 05:31:28 -04:00
|
|
|
} fio_code ;
|
2013-06-09 04:16:02 -04:00
|
|
|
|
2013-06-08 05:32:48 -04:00
|
|
|
#define FTYPE_NONE 0
|
|
|
|
#define FTYPE_UNIX 1
|
|
|
|
#define FTYPE_DOS 2
|
|
|
|
#define FTYPE_MAC 4
|
2013-06-09 05:31:28 -04:00
|
|
|
/* FTYPE_MIXED [ 3, 5, 6, 7] */
|
2013-06-08 05:32:48 -04:00
|
|
|
|
2015-02-15 00:30:54 -05:00
|
|
|
#define FCODE_ASCII 0
|
2021-08-13 23:45:41 -04:00
|
|
|
#define FCODE_UTF_8 1
|
|
|
|
#define FCODE_EXTND 2
|
|
|
|
#define FCODE_MIXED 3
|
2015-02-15 00:30:54 -05:00
|
|
|
|
2021-08-12 23:06:58 -04:00
|
|
|
extern char *fline ; /* dynamic return line */
|
|
|
|
extern int ftype ;
|
|
|
|
extern int fcode ; /* encoding type */
|
|
|
|
extern int fpayload ; /* actual length of fline content */
|
2013-06-08 05:32:48 -04:00
|
|
|
|
2013-06-09 05:31:28 -04:00
|
|
|
fio_code ffclose( void) ;
|
|
|
|
fio_code ffgetline( void) ;
|
2013-06-10 21:51:29 -04:00
|
|
|
fio_code ffputline( char *buf, int nbuf, int dosflag) ;
|
2013-06-09 05:31:28 -04:00
|
|
|
fio_code ffropen( const char *fn) ;
|
|
|
|
fio_code ffwopen( const char *fn) ;
|
2013-05-17 10:58:27 -04:00
|
|
|
|
|
|
|
#endif
|
2021-08-12 23:06:58 -04:00
|
|
|
/* end of fileio.h */
|