home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / atarist / astker.c < prev    next >
C/C++ Source or Header  |  2020-01-01  |  2KB  |  62 lines

  1. /*
  2.  * astker.c  ATARI ST kermit main program
  3.  */
  4.  
  5. #define EXTERN       /* global variables are actually declared here */
  6. #include <stdio.h>   /* common I/O definitions */
  7. #include "astinc.h"  /* global ST KERMIT defintions */
  8.  
  9. /*
  10.  * K e r m i t  File Transfer Utility
  11.  *
  12.  * UNIX Kermit, Columbia University, 1981, 1982, 1983
  13.  * Bill Catchings, Bob Cattani, Chris Maio, Frank da Cruz, Alan Crosswell
  14.  *
  15.  *  Also:       Jim Guyton, Rand Corporation
  16.  *              Walter Underwood, Ford Aerospace
  17.  *              Glenn Seaton, Kennedy Space Center
  18.  *              Bradley Bosch,
  19.  *              Robert Larson, U. of Southern California <Blarson@usc-ecl>
  20.  *              James Jones
  21.  *
  22.  *
  23.  */
  24. /* Adaption to ATARI ST by Bernhard Nebel (NEBEL@DB0TUI11.BITNET)
  25.  * in March 1986.
  26.  * Actually, I used the OS9 Version (1.5) instead of the original C-Kermit
  27.  */
  28. /*
  29.  *  Modification History:
  30.  * March, 17, 1986  Bernhard Nebel
  31.  *                  Implementation of GEM interface
  32.  *
  33.  * May, 16, 1986    BN V1.00
  34.  *                  Adaption of old V1.5 os9 Kermit to ATARI ST V1.00
  35.  *
  36.  * June, 11, 1986   BN V1.01
  37.  *                  Error concerning ABORT removed.
  38.  *                  English Resource file added.
  39.  *                  Short documentation written.
  40.  *
  41.  * June, 19, 1986   BN V1.02
  42.  *                  Bug in bufemp fixed: 8th bit quote character got
  43.  *                  controllified (uhrps!).
  44.  *
  45.  */
  46.  
  47. /*
  48.  *  m a i n
  49.  *
  50.  *  Main routine - initialize and start dispatch routine
  51.  */
  52.  
  53. main()
  54. {
  55.  if (w_init_screen()) /* setup screen */
  56.   {
  57.    init_params();   /* init global parameters */
  58.    w_multi();       /* do actual dispatching */
  59.    w_exit_screen(); /* clear up everything */
  60.   };
  61. }
  62.