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

  1. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  2. /* |_o_o|\\ Copyright (c) 1986 The Software Distillery.  All Rights Reserved */
  3. /* |. o.| || This program may not be distributed without the permission of   */
  4. /* | .  | || the authors.                                                    */
  5. /* | o  | ||    Dave Baker     Ed Burnette  Stan Chow    Jay Denebeim        */
  6. /* |  . |//     Gordon Keener  Jack Rouse   John Toebes  Doug Walker         */
  7. /* ======          BBS:(919)-471-6436      VOICE:(919)-469-4210              */ 
  8. /*                                                                           */
  9. /* Contributed to Columbia University for inclusion in C-Kermit.             */
  10. /* Permission is granted to any individual or institution to use, copy, or   */
  11. /* redistribute this software so long as it is not sold for profit, provided */
  12. /* this copyright notice is retained.                                        */
  13. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  14.  
  15. /*  C K I S T U  --  Stubs for functions not yet implemented on Amiga */
  16.  
  17. /*
  18.  Author: Jack Rouse, The Software Distillery
  19. */
  20.  
  21. #include "ckcdeb.h"
  22. #include <stdio.h>
  23. #include <ctype.h>
  24. #include "ckcker.h"
  25. #include "ckucmd.h"
  26.  
  27. char *dialv = "Dial Command unimplemented";
  28. struct keytab mdmtab[] = {
  29.     "direct",     0,     0,    /* no modem control */
  30.     "generic",     1,     0    /* use 7 wire modem control */
  31. };
  32.  
  33. int nmdm = sizeof(mdmtab) / sizeof(struct keytab);
  34.  
  35. ckdial()
  36. {
  37.     printf("Sorry, DIAL command not implemented yet.\n");
  38.     return(-2);
  39. }
  40.  
  41. char *loginv = "Script Command unimplemented";
  42. login()
  43. {
  44.     printf("Sorry, SCRIPT command not implemented yet\n");
  45.     return(-2);
  46. }
  47.