(c4)
| 3441 | return c4 >= 65 && c4 <= 90 || c4 >= 97 && c4 <= 122; |
| 3442 | } |
| 3443 | function isASCIIAlphanumeric(c4) { |
| 3444 | return isASCIIAlpha(c4) || isASCIIDigit(c4); |
| 3445 | } |
| 3446 | function isASCIIHex(c4) { |
| 3447 | return isASCIIDigit(c4) || c4 >= 65 && c4 <= 70 || c4 >= 97 && c4 <= 102; |
| 3448 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…