home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / c / pcw_c.zip / FILES.H < prev    next >
Text File  |  1991-10-18  |  469b  |  24 lines

  1. /* files.h
  2.    18oct91
  3.    cb
  4.    files.c function prototypes
  5. */
  6.  
  7. /* === defines ========================================= */
  8. #define FALSE 0
  9. #define TRUE  1
  10. #define ESC 0x1B
  11. #define EVER ;;
  12.  
  13. #define LOAD  0
  14. #define NEW   1
  15. #define SAVE  2
  16. #define WRITE 3
  17. #define DIR   4
  18. #define SHELL 5
  19.  
  20. /* === prototypes ====================================== */
  21. int files_menu(void);      /* do files menu */
  22. int file(int cmd);         /* do file functions */
  23.  
  24.