/* * astker.c ATARI ST kermit main program */ #define EXTERN /* global variables are actually declared here */ #include /* common I/O definitions */ #include "astinc.h" /* global ST KERMIT defintions */ /* * K e r m i t File Transfer Utility * * UNIX Kermit, Columbia University, 1981, 1982, 1983 * Bill Catchings, Bob Cattani, Chris Maio, Frank da Cruz, Alan Crosswell * * Also: Jim Guyton, Rand Corporation * Walter Underwood, Ford Aerospace * Glenn Seaton, Kennedy Space Center * Bradley Bosch, * Robert Larson, U. of Southern California * James Jones * * */ /* Adaption to ATARI ST by Bernhard Nebel (NEBEL@DB0TUI11.BITNET) * in March 1986. * Actually, I used the OS9 Version (1.5) instead of the original C-Kermit */ /* * Modification History: * March, 17, 1986 Bernhard Nebel * Implementation of GEM interface * * May, 16, 1986 BN V1.00 * Adaption of old V1.5 os9 Kermit to ATARI ST V1.00 * * June, 11, 1986 BN V1.01 * Error concerning ABORT removed. * English Resource file added. * Short documentation written. * * June, 19, 1986 BN V1.02 * Bug in bufemp fixed: 8th bit quote character got * controllified (uhrps!). * */ /* * m a i n * * Main routine - initialize and start dispatch routine */ main() { if (w_init_screen()) /* setup screen */ { init_params(); /* init global parameters */ w_multi(); /* do actual dispatching */ w_exit_screen(); /* clear up everything */ }; }