Is there a standalone C++ preprocessor? I don't need the compiler/linker, and I'm not able to install a full kit.
I'd like to be able to obtain preprocessed version of some headers, using some defines and include paths I provide.
EDIT: I can't rely on anything being available. No cl, no gcc, nothing. The least I would need done is something that processes macros ( specifically #ifdef and #if ).
EDIT: I'm using this on a Windows XP computer.