K 10 svn:author V 6 bbraun K 8 svn:date V 27 2002-02-05T06:21:34.000000Z K 7 svn:log V 297 Makes __istype() an inline (and a non inlined) function to avoid C++ compile issues. std::isspace(' ') was expanding to std::(!!_maskrune...) which would cause a C++ compile error. Making __istype() an inline causes the expansion to be std::__istype() instead, which is valid. Reviewed by: jkh END