> Please also note that _* names are reserved name space. Don't use them > for your functions if you can avoid it, for portability -- they might > screw some linker.
Are __* names reserved? What's the recommended form for naming "private" variables (I'm coming from C++/Python where _* names are a common naming style for class-private variables to avoid collisions with similarly named public member functions)? James