mirror of
https://github.com/open-simh/simtools.git
synced 2026-02-15 12:25:58 +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.
12 lines
560 B
C
12 lines
560 B
C
extern char doquery (void (*printfile)(void *), void *name);
|
|
extern void dodisk (int argc, char **argv);
|
|
extern void dofiles(int argc , char **argv , commandaction action , int nullflag);
|
|
/* Prototype include a typedef name.
|
|
It should be moved after the typedef declaration */
|
|
extern void doexit(int argc , char **argv);
|
|
extern commandhandler scanargs(int argc , char **argv);
|
|
/* Prototype include a typedef name.
|
|
It should be moved after the typedef declaration */
|
|
extern void initialize_readline (void);
|
|
extern char *stripwhite (char *string);
|