Home
last modified time | relevance | path

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

/fatfs-latest/option/
Dffunicode.c15223 DWORD uni, /* UTF-16 encoded character to be converted */ in ff_uni2oem() argument
15231 if (uni < 0x80) { /* ASCII? */ in ff_uni2oem()
15232 c = (WCHAR)uni; in ff_uni2oem()
15235 if (uni < 0x10000 && cp == FF_CODE_PAGE) { /* Is it in BMP and valid code page? */ in ff_uni2oem()
15236 for (c = 0; c < 0x80 && uni != p[c]; c++) ; in ff_uni2oem()
15276 DWORD uni, /* UTF-16 encoded character to be converted */ in ff_uni2oem() argument
15285 if (uni < 0x80) { /* ASCII? */ in ff_uni2oem()
15286 c = (WCHAR)uni; in ff_uni2oem()
15289 if (uni < 0x10000 && cp == FF_CODE_PAGE) { /* Is it in BMP and valid code page? */ in ff_uni2oem()
15290 uc = (WCHAR)uni; in ff_uni2oem()
[all …]
/fatfs-latest/include/
Dff.h368 WCHAR ff_uni2oem (DWORD uni, WORD cp); /* Unicode to OEM code conversion */
369 DWORD ff_wtoupper (DWORD uni); /* Unicode upper-case conversion */