1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-10 14:00:41 +00:00
uemacs/file.h

31 lines
719 B
C
Raw Normal View History

2013-05-19 09:36:24 +00:00
#ifndef _FILE_H_
#define _FILE_H_
#include "crypt.h"
#include "retcode.h"
#if CRYPT
#include "buffer.h"
void cryptbufferkey( struct buffer *bp) ;
int set_encryption_key( int f, int n) ;
#endif
2013-10-09 06:03:56 +00:00
extern boolean restflag ; /* restricted use? */
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( char *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) ;
int ifile( const char *fname) ;
2013-05-19 09:36:24 +00:00
#endif