pub unsafe extern "C" fn aws_isdigit(ch: u8) -> bool
Expand description

Like isdigit(). Returns true if ch has the value of ASCII/UTF-8: ‘0’-‘9’.

Note: C’s built-in isdigit() is also supposed to ignore the C locale, but cppreference.com claims “some implementations (e.g. Microsoft in 1252 codepage) may classify additional single-byte characters as digits”