Home
last modified time | relevance | path

Searched refs:chCurrent (Results 1 – 1 of 1) sorted by relevance

/reactos/sdk/lib/rtl/
H A Dunicode.c266 CHAR chCurrent; in RtlCharToInteger() local
318 chCurrent = *str; in RtlCharToInteger()
320 if (chCurrent >= '0' && chCurrent <= '9') in RtlCharToInteger()
322 digit = chCurrent - '0'; in RtlCharToInteger()
324 else if (chCurrent >= 'A' && chCurrent <= 'Z') in RtlCharToInteger()
326 digit = chCurrent - 'A' + 10; in RtlCharToInteger()
328 else if (chCurrent >= 'a' && chCurrent <= 'z') in RtlCharToInteger()
330 digit = chCurrent - 'a' + 10; in RtlCharToInteger()