Windows2000/private/shell/ext/url/inline.hpp

14 lines
166 B
C++
Raw Normal View History

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