Home
last modified time | relevance | path

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

/fatfs-2.7.6/
Dff.c3094 const TCHAR *tp, *tt; local
3103 tt = tp = *path;
3104 if (!tp) return vol; /* Invalid path name? */
3109 if (IsDigit(*tp) && tp + 2 == tt) { /* Is there a numeric volume ID + colon? */
3110 i = (int)*tp - '0'; /* Get the LD number */
3116 sp = VolumeStr[i]; tp = *path; /* This string volume ID and path name */
3118 c = *sp++; tc = *tp++;
3122 } while ((c || tp != tt) && ++i < FF_VOLUMES); /* Repeat for each id until pattern match */
3132 if (*tp == '/') { /* Is there a volume ID? */
3133 while (*(tp + 1) == '/') tp++; /* Skip duplicated separator */
[all …]