mirror of
https://github.com/open-simh/simtools.git
synced 2026-02-02 14:52:29 +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.
9 lines
354 B
C
9 lines
354 B
C
extern void getsize (const char *name, long *tsize, long *rsize, int *dec166);
|
|
extern long adjsize (long size);
|
|
extern void setrname(void);
|
|
extern void ropen(const char * mode);
|
|
extern void rseek(long block);
|
|
extern void rread(long block , long size , void * buffer);
|
|
extern void rwrite(long block , long size , void * buffer);
|
|
extern void rclose(void);
|