Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 817 of file utmisc.c.
Referenced by AcpiExNameSegment(), AcpiUtRepairName(), and AcpiUtValidAcpiName().
{ if (!((Character >= 'A' && Character <= 'Z') || (Character >= '0' && Character <= '9') || (Character == '_'))) { /* Allow a '!' in the last position */ if (Character == '!' && Position == 3) { return (TRUE); } return (FALSE); } return (TRUE); }