home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
INFO
/
C
/
DLIBS.ZIP
/
UNTIL.H
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1987-06-19
|
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);
*
*/