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