Home | History | Annotate | Download | only in c-index-test

Lines Matching defs:base2

36     char* base2 = (char*)strrchr(path, '\\');
37 if (base1 && base2)
38 return((base1 > base2) ? base1 + 1 : base2 + 1);
41 else if (base2)
42 return(base2 + 1);
49 char* base2 = (char*)strrchr(path, '\\');
50 if (base1 && base2)
51 if (base1 > base2)
54 *base2 = 0;
57 else if (base2)
58 *base2 = 0;