home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 171.lha / SupLib / resetbre.c < prev    next >
Text File  |  1988-04-28  |  166b  |  13 lines

  1.  
  2. /*
  3.  * reset the break signal and return the break status
  4.  */
  5.  
  6. #define SBF (SIGBREAKF_CTRL_C|SIGBREAKF_CTRL_D)
  7.  
  8. resetbreak()
  9. {
  10.     return(SetSignal(0,SBF) & SBF);
  11. }
  12.  
  13.