Windows2000/private/shell/ext/url/inline.hpp
2020-09-30 17:12:32 +02:00

14 lines
166 B
C++

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