/* CBREAK.H */ #ifndef _CBREAK_H #define _CBREAK_H #define CTRL_C_REPLACE (27) /* Replace ^C with this value */ void break_Install(void); void break_Remove(void); int break_IsCTRLC(void); #endif