Home | History | Annotate | Download | only in utils

Lines Matching defs:base

71         const char*  base;
77 base = end;
78 while (base > path && !ispathsep(base[-1]))
79 base--;
81 if (base <= path) /* we can't go that far */
84 if (end == base+1 && base[0] == '.')
87 if (end == base+2 && base[0] == '.' && base[1] == '.') {
95 end = base - 1;