mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-10 14:36:13 -05:00
24 lines
626 B
C
24 lines
626 B
C
#ifndef _FILE_H_
|
|
#define _FILE_H_
|
|
|
|
#include "buffer.h"
|
|
#include "retcode.h"
|
|
|
|
extern boolean restflag ; /* restricted use? */
|
|
boolean resterr( void) ; /* restricted error message */
|
|
|
|
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) ;
|
|
void unqname( char *name) ;
|
|
int filewrite( int f, int n) ;
|
|
int filesave( int f, int n) ;
|
|
int writeout( const char *fn) ;
|
|
int filename( int f, int n) ;
|
|
|
|
#endif
|