mirror of
https://github.com/open-simh/simtools.git
synced 2026-02-02 23:02:23 +00:00
file systems. It supports reading and writing as well as a number
of other operations, such as octal dump, file system initialize,
and file system check ("clean").
This was originally maintained as a Subversion repository at
svn://akdesign.dyndns.org/flx/branches/V2.6.
as suggested by Timothe Litt on the SIMH mailing list.
26 lines
1.2 KiB
C
26 lines
1.2 KiB
C
extern long seqio(firqb * f , long iolen , iohandler io , void * buffer);
|
|
/* Prototype include a typedef name.
|
|
It should be moved after the typedef declaration */
|
|
extern void openfile(firqb * f);
|
|
/* Prototype include a typedef name.
|
|
It should be moved after the typedef declaration */
|
|
extern void initrandom(firqb * f);
|
|
/* Prototype include a typedef name.
|
|
It should be moved after the typedef declaration */
|
|
extern void fileseek(firqb * f , long vbn);
|
|
/* Prototype include a typedef name.
|
|
It should be moved after the typedef declaration */
|
|
extern long getfile(FILE * to , firqb * f , int binary);
|
|
/* Prototype include a typedef name.
|
|
It should be moved after the typedef declaration */
|
|
extern long extfile(firqb * f , long blocks);
|
|
/* Prototype include a typedef name.
|
|
It should be moved after the typedef declaration */
|
|
extern long writefile(firqb * f , long count);
|
|
/* Prototype include a typedef name.
|
|
It should be moved after the typedef declaration */
|
|
extern long putfile(FILE * from , firqb * f , int binary);
|
|
/* Prototype include a typedef name.
|
|
It should be moved after the typedef declaration */
|
|
extern int textfile(char * name);
|