home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archimedes / aradia.c < prev    next >
C/C++ Source or Header  |  2020-01-01  |  979b  |  33 lines

  1. /* -> c.ckadia
  2.  */
  3.  
  4. char *dialv = "Arthur Dial Command (not yet implemented) 27 July 87";
  5.  
  6. /*  C K A D I A  --  Dialing program for connection to remote system */
  7. /*  A R T H U R    --  temp cut down version                         */
  8.  
  9. #include "ckcdeb.h"
  10. #include <stdio.h>
  11. #include <ctype.h>
  12. #include "ckcker.h"
  13. #include "ckucmd.h"
  14.  
  15. struct keytab mdmtab[] = {    /* Modem types for command parsing */
  16.     "No dial-out supported", 0, 0
  17. };
  18. int nmdm = (sizeof(mdmtab) / sizeof(struct keytab));  /* number of modems */
  19.  
  20. /*  D I A L  --  Dial up the remote system */
  21.  
  22. #ifdef ANSI
  23. void
  24. #endif
  25. dial(telnbr) char *telnbr; {
  26.   printf("\nThe dial command has not been implemented.\n");
  27.   printf("Acorn would be interested to hear from you if\n");
  28.   printf("you have an auto-dial modem you wish to attach\n");
  29.   printf("to the Archimedes. In particular we would like to know\n");
  30.   printf("how many people want to use Acorn Prestel modems\n");
  31.   printf("with their workstations.\n\n");
  32. }
  33.