home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SPACE 2
/
SPACE - Library 2 - Volume 1.iso
/
program
/
217
/
sys_h
/
until.h
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1987-11-28
|
247 b
|
18 lines
/*
* UNTIL.H ...some fun #defines... -Dal
*/
#define repeat do
#define until(cond) while(!(cond))
#define HELL_FREEZES_OVER (1)
/*
*
* now you can...
*
* repeat {
* something();
* } until(HELL_FREEZES_OVER);
*
*/