WindowsXP/shell/ext/url/inline.hpp
2025-04-27 07:49:33 -04:00

14 lines
179 B
C++

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