home *** CD-ROM | disk | FTP | other *** search
/ Dream 48 / Amiga_Dream_48.iso / Atari / c / sozobon-v2 / dlibs12.lha / SYS_H.ARC / UNTIL.H < prev   
Text File  |  1987-11-28  |  247b  |  18 lines

  1. /*
  2.  *    UNTIL.H        ...some fun #defines...        -Dal
  3.  */
  4.  
  5. #define    repeat            do
  6. #define    until(cond)        while(!(cond))
  7. #define    HELL_FREEZES_OVER    (1)
  8.  
  9. /*
  10.  *
  11.  * now you can...
  12.  *
  13.  * repeat {
  14.  *    something();
  15.  * } until(HELL_FREEZES_OVER);
  16.  *
  17.  */
  18.