home *** CD-ROM | disk | FTP | other *** search
/ Software Recommendations - 1998 Season 1 / DNBCD4.iso / share / DOS / ipxcopy / SRC.ZIP / SRC / CBREAK.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-01  |  228 b   |  17 lines

  1. /*
  2.  
  3.    CBREAK.H
  4.  
  5. */
  6.  
  7. #ifndef _CBREAK_H
  8. #define _CBREAK_H
  9.  
  10. #define CTRL_C_REPLACE  (27)        /* Replace ^C with this value */
  11.  
  12. void break_Install(void);
  13. void break_Remove(void);
  14. int break_IsCTRLC(void);
  15.  
  16. #endif
  17.