MCPcopy Create free account
hub / github.com/N64Recomp/N64Recomp / isalpha_nolocale

Function isalpha_nolocale

include/recompiler/context.h:614–616  ·  view source on GitHub ↗

Locale-independent ASCII-only version of isalpha.

Source from the content-addressed store, hash-verified

612
613 // Locale-independent ASCII-only version of isalpha.
614 inline bool isalpha_nolocale(char c) {
615 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z');
616 }
617
618 // Locale-independent ASCII-only version of isalnum.
619 inline bool isalnum_nolocale(char c) {

Callers 2

isalnum_nolocaleFunction · 0.85
validate_mod_idFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected