Home
last modified time | relevance | path

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

/fatfs-2.7.6/
Dff.c3095 TCHAR tc; local
3105 do tc = *tt++; while (!IsTerminator(tc) && tc != ':'); /* Find a colon in the path */
3107 if (tc == ':') { /* DOS/Windows style volume ID? */
3118 c = *sp++; tc = *tp++;
3120 if (IsLower(tc)) tc -= 0x20;
3121 } while (c && (TCHAR)c == tc);
3138 c = *sp++; tc = *(++tt);
3140 if (IsLower(tc)) tc -= 0x20;
3141 } while (c && (TCHAR)c == tc);
3142 …} while ((c || (tc != '/' && !IsTerminator(tc))) && ++i < FF_VOLUMES); /* Repeat for each ID until…
[all …]