1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-18 16:35:23 +00:00
uemacs/fileio.h

12 lines
224 B
C
Raw Normal View History

#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