/*
 * inline.hpp - Inline function definitions.
 */


/* Inline Functions
 *******************/

INLINE BOOL IsDigit(char ch)
{
   return(ch >= '0' && ch <= '9');
}

