mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-17 18:16:22 -05:00
12 lines
224 B
C
12 lines
224 B
C
#ifndef _FILEIO_H_
|
|
#define _FILEIO_H_
|
|
|
|
int fexist( const char *fname) ;
|
|
int ffclose( void) ;
|
|
int ffgetline( void) ;
|
|
int ffputline( char *buf, int nbuf) ;
|
|
int ffropen( const char *fn) ;
|
|
int ffwopen( const char *fn) ;
|
|
|
|
#endif
|