Home
last modified time | relevance | path

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

/fatfs-2.7.6/option/
Dffunicode.c15227 WCHAR c = 0; in ff_uni2oem() local
15232 c = (WCHAR)uni; in ff_uni2oem()
15236 for (c = 0; c < 0x80 && uni != p[c]; c++) ; in ff_uni2oem()
15237 c = (c + 0x80) & 0xFF; in ff_uni2oem()
15241 return c; in ff_uni2oem()
15249 WCHAR c = 0; in ff_oem2uni() local
15254 c = oem; in ff_oem2uni()
15258 if (oem < 0x100) c = p[oem - 0x80]; in ff_oem2uni()
15262 return c; in ff_oem2uni()
15281 WCHAR c = 0, uc; in ff_uni2oem() local
[all …]
/fatfs-2.7.6/
Dff.c48 #define IsUpper(c) ((c) >= 'A' && (c) <= 'Z') argument
49 #define IsLower(c) ((c) >= 'a' && (c) <= 'z') argument
50 #define IsDigit(c) ((c) >= '0' && (c) <= '9') argument
51 #define IsSeparator(c) ((c) == '/' || (c) == '\\') argument
52 #define IsTerminator(c) ((UINT)(c) < (FF_USE_LFN ? ' ' : '!')) argument
53 #define IsSurrogate(c) ((c) >= 0xD800 && (c) <= 0xDFFF) argument
54 #define IsSurrogateH(c) ((c) >= 0xD800 && (c) <= 0xDBFF) argument
55 #define IsSurrogateL(c) ((c) >= 0xDC00 && (c) <= 0xDFFF) argument
688 static int dbc_1st (BYTE c) in dbc_1st() argument
691 if (DbcTbl && c >= DbcTbl[0]) { in dbc_1st()
[all …]
DCMakeLists.txt9 ff.c
10 zfs_diskio.c
13 option/ffunicode.c
14 option/ffsystem.c
DREADME6 API in diskio.c. The disk io interfaces are updated to interface
/fatfs-2.7.6/include/
Dff.h335 int f_putc (TCHAR c, FIL* fp); /* Put a character to the file */