uemacs/file.h

24 lines
626 B
C
Raw Normal View History

2013-05-19 09:36:24 +00:00
#ifndef _FILE_H_
#define _FILE_H_
#include "buffer.h"
#include "retcode.h"
2013-10-09 06:03:56 +00:00
extern boolean restflag ; /* restricted use? */
boolean resterr( void) ; /* restricted error message */
2013-10-09 06:03:56 +00:00
2013-05-19 09:36:24 +00:00
int fileread( int f, int n) ;
int insfile( int f, int n) ;
int filefind( int f, int n) ;
int viewfile( int f, int n) ;
int getfile( const char *fname, boolean lockfl) ;
int readin( const char *fname, boolean lockfl) ;
void makename( bname_t bname, const char *fname) ;
2013-05-19 09:36:24 +00:00
void unqname( char *name) ;
int filewrite( int f, int n) ;
int filesave( int f, int n) ;
int writeout( const char *fn) ;
2013-05-19 09:36:24 +00:00
int filename( int f, int n) ;
#endif