17 #ifndef RCUTILS__ISALNUM_NO_LOCALE_H_
18 #define RCUTILS__ISALNUM_NO_LOCALE_H_
28 rcutils_isalnum_no_locale(
char c)
31 if (c >= 0x30 && c <= 0x39 ) {
35 if (c >= 0x41 && c <= 0x5a ) {
39 if (c >= 0x61 && c <= 0x7a ) {
49 #endif // RCUTILS__ISALNUM_NO_LOCALE_H_