home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
alde_c
/
misc
/
lib
/
dlibs
/
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);
*
*/