Home | History | Annotate | Download | only in src

Lines Matching refs:cwd

1364 		/* upath is a relative pathname, prepend cwd */
1541 * - if file starts with ./ or ../ append cwd and file to result
1544 * then cwd is appended to result.
1553 make_path(const char *cwd, const char *file,
1594 (cwd && *cwd)) {
1595 len = strlen(cwd);
1597 memcpy(xp, cwd, len);
1599 if (cwd[len - 1] != '/')