12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- Run me through unifdef -UA
- *** Nothing should be visible here:
- hello world
- hello world
- hello world
- hello world
- hello world
- hello world
- hello world
- hello world
- hello world
- hello world
- *** Everything should be visible here, but #if/#endif removed:
- hello world 1
- hello world 2 (last)
- *** This should be unchanged (#if/#endif not removed):
- I am here 1
- I am here 2
- I am here 3
- && !defined BAZ
- I am here 5
- && (defined BAR || defined BAZ \
- || defined XYZ))
- I am here 6
- I am here 7
- && defined BAR
- I am here 8
- I am here 9 (last)
- *** End
|