hex_digits       7103 src/simh/scp.c                 static const char *hex_digits = "0123456789ABCDEF";
hex_digits       7108 src/simh/scp.c                 c = strchr (hex_digits, toupper(*iptr));
hex_digits       7110 src/simh/scp.c                     *optr = ((*optr)<<4) + (uint8)(c-hex_digits);
hex_digits       7113 src/simh/scp.c                 c = strchr (hex_digits, toupper(*iptr));
hex_digits       7115 src/simh/scp.c                     *optr = ((*optr)<<4) + (uint8)(c-hex_digits);