home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / b / bmh02src.zip / MISC.H < prev    next >
C/C++ Source or Header  |  1992-08-16  |  479b  |  30 lines

  1. /*
  2.    misc.h : Copyright Paul Healy, EI9GL, 1992.
  3.  
  4.    920603 : Created.
  5. */
  6. #ifndef _misc_h_
  7. #define _misc_h_
  8.  
  9. #define MAXARGS 20
  10. #define LINELEN 256
  11.  
  12. /*
  13.  * mail file extension
  14.  */
  15. #ifdef MSDOS
  16. #define EXT ".txt"
  17. #else
  18. #define EXT ""
  19. #endif
  20.  
  21. int parse(char *line , char *argv[], int maxargs);
  22. char *rip(char *s);
  23. int wanted(int msg, int argc, char *argv[], int default_msg);
  24. int setupbm(void);
  25.  
  26. void null_init(void);
  27. void null_check(char *s);
  28.  
  29. #endif
  30.