windows-nt/Source/XPSP1/NT/shell/ext/url/inline.hpp

14 lines
166 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*
* inline.hpp - Inline function definitions.
*/
/* Inline Functions
*******************/
INLINE BOOL IsDigit(char ch)
{
return(ch >= '0' && ch <= '9');
}