15 #ifndef RCUTILS__ISALNUM_NO_LOCALE_H_    16 #define RCUTILS__ISALNUM_NO_LOCALE_H_    26 rcutils_isalnum_no_locale(
char c)
    29   if (c >= 0x30  && c <= 0x39 ) {
    33   if (c >= 0x41  && c <= 0x5a ) {
    37   if (c >= 0x61  && c <= 0x7a ) {
    47 #endif  // RCUTILS__ISALNUM_NO_LOCALE_H_