Home | History | Annotate | Download | only in lib

Lines Matching refs:dst

5  * to by dst; ends on encountering any whitespace.
6 * dst is preserved.
17 void generic_mangle_name(char *dst, const char *src)
19 char *p = dst;
31 *dst++ = *src++;
35 if (dst == p)
37 if (dst[-1] != '/')
39 if ((dst[-1] == '/') && ((dst - 1) == p))
42 dst--;
48 *dst++ = '\0';