home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 4 / CDPD_IV.bin / networking / uucp / amigauucpsrc / bms / stop.c < prev    next >
C/C++ Source or Header  |  1994-06-29  |  226b  |  27 lines

  1.  
  2. /*
  3.  *  STOP.C
  4.  */
  5.  
  6. #include "defs.h"
  7.  
  8. Prototype void StopBMS(char *);
  9. Prototype void InitStop(void);
  10.  
  11. void
  12. InitStop()
  13. {
  14. }
  15.  
  16. /*
  17.  *  email a STOP command
  18.  */
  19.  
  20. void
  21. StopBMS(id)
  22. char *id;
  23. {
  24.     puts("STOP not imlemented yet");
  25. }
  26.  
  27.