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

Lines Matching defs:base1

31     char* base1 = (char*)strrchr(path, '/');
33 if (base1 && base2)
34 return((base1 > base2) ? base1 + 1 : base2 + 1);
35 else if (base1)
36 return(base1 + 1);
44 char* base1 = (char*)strrchr(path, '/');
46 if (base1 && base2)
47 if (base1 > base2)
48 *base1 = 0;
51 else if (base1)
52 *base1 = 0;