Lines Matching defs:end
75 /* Copy a separating '/' if homedir does not end with one */
120 const char *cp = *cpp, *end;
171 /* Read to end of filename - either to whitespace or terminator */
172 end = strpbrk(cp, WHITESPACE);
173 if(!end)
174 end = strchr(cp, '\0');
176 *cpp = end + strspn(end, WHITESPACE);
188 memcpy(&(*path)[pathLength], cp, (int)(end - cp));
189 pathLength += (int)(end - cp);