home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
100-199
/
ff114.lzh
/
WBLander
/
Source
/
conv8svx.c
< prev
next >
Wrap
C/C++ Source or Header
|
1987-11-22
|
345b
|
26 lines
/* load8test - test load8svx */
#include <exec/types.h>
#include <stdio.h>
extern int svx_to_c();
main(argc,argv)
int argc;
char *argv[];
{
if (argc != 3)
{
fputs("usage: conv8svx infile outfile\n",stderr);
exit(-1);
}
if (svx_to_c(argv[1],argv[2]) < 0)
{
fputs("looks like svx_to_c failed\n",stderr);
exit(-2);
}
exit(0);
}