windows-nt/Source/XPSP1/NT/shell/ext/url/inline.hpp
2020-09-26 16:20:57 +08:00

14 lines
166 B
C++

/*
* inline.hpp - Inline function definitions.
*/
/* Inline Functions
*******************/
INLINE BOOL IsDigit(char ch)
{
return(ch >= '0' && ch <= '9');
}