static bool charIsDigit()

in source/otaJobParser/job_parser.c [506:509]


static bool charIsDigit( const char c )
{
    return ( c >= '0' ) && ( c <= '9' );
}