home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d169 / dillonstuff.lha / src / suplib / resetbreak.c < prev    next >
Text File  |  1988-11-22  |  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.