home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / HACKSRC.ZIP / MSDOS.H < prev    next >
C/C++ Source or Header  |  1985-10-16  |  1KB  |  48 lines

  1. /*
  2.  * msdos.h
  3.  *
  4.  * This include file contains the function declarations for the functions
  5.  * contained in msdos.c
  6.  *
  7.  */
  8.  
  9. /* function declarations for those who want strong type checking
  10.  * on arguments to library function calls
  11.  */
  12.  
  13. #ifdef LINT_ARGS        /* arg. checking enabled */
  14.  
  15. long    all_files_size(char *);
  16. void    append_slash(char *);
  17. char    BIOSgetch();
  18. void    chdrive(char *);
  19. int    check_then_creat(char *, int);
  20. void    copybones(int);
  21. int    dosh();
  22. int    dotogglepickup();
  23. void    fastat(xchar, xchar, char);
  24. long    filesize(char *);
  25. void    fixinv();
  26. long    freediskspace(char *);
  27. void    gameDiskPrompt();
  28. char *    getlogin();
  29. void    getreturn(char *);
  30. int    getuid();
  31. char *    let_to_name(char);
  32. void    msexit(int);
  33. void    name_file(char *, int);
  34. void    read_config_file();
  35. int    saveDiskPrompt(int);
  36. void    set_lock_and_bones();
  37. int    tgetch();
  38.  
  39. #else
  40.  
  41. extern long    all_files_size(), filesize(), freediskspace();
  42. extern char    BIOSgetch(), *getlogin(), *let_to_name();
  43. extern void    append_slash(), chdrive(), copybones(), fastat(), fixinv();
  44. extern void    gameDiskPrompt(), getreturn(), msexit(), name_file();
  45. extern void    read_config_file(), set_lock_and_bones();
  46.  
  47. #endif /* LINT_ARGS */
  48.