Note
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang mag-sign in o magpalit ng mga direktoryo.
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang baguhin ang mga direktoryo.
Use the following tips:
Comparing a known lead byte with an ASCII character works correctly:
if( *sz1 == 'A' )Comparing two unknown characters requires the use of one of the macros defined in Mbstring.h:
if( !_mbccmp( sz1, sz2) )This ensures that both bytes of a double-byte character are compared for equality.