strchr

VOID __stdcall strchr(UINT8 *string, UINT8 chr){
  UINT8 v2; 

  if( *string )
  {
    v2 = *string;
    do
    {
      if( v2 == chr )
        break;
      v2 = *++string;
    }
    while( *string );
  }
}

Referenced by:

CmpGetToken
EmpParseRuleTerm
EmpParseTargetRuleStringIndexList
MiSnapThunk
PipSmBiosGetString
WmipSMBiosFindStringAndZero