Home
last modified time | relevance | path

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

/fatfs-latest/
Dff.c756 BYTE tb; in tchar2uni() local
771 tb = (BYTE)*p++; in tchar2uni()
772 if ((tb & 0xC0) != 0x80) return 0xFFFFFFFF; /* Wrong sequence? */ in tchar2uni()
773 uc = uc << 6 | (tb & 0x3F); in tchar2uni()