Home
last modified time | relevance | path

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

/fatfs-latest/
Dff.c3164 const TCHAR *tp; local
3173 tt = tp = *path;
3174 if (!tp) return -1; /* Invalid path name? */
3181 if (IsDigit(*tp) && tp + 2 == tt) { /* Is it a numeric volume ID + colon? */
3182 i = (int)*tp - '0'; /* Get the logical drive number */
3188 vsp = VolumeStr[i]; tp = *path; /* Preconfigured string and path name to test */
3190 vchr = *vsp++; chr = *tp++;
3194 } while ((vchr || tp != tt) && ++i < FF_VOLUMES); /* Repeat for each id until pattern match */
3202 if (*tp == '/') { /* Is there a volume ID? */
3203 while (*(tp + 1) == '/') tp++; /* Skip duplicated separator */
[all …]