Lines Matching defs:to
4 * The contents of this file are subject to the terms of the
24 * Use is subject to license terms.
34 * abspath - expand a path relative to some `.'
37 * string *abspath(char *path, char *dot, string *to)
42 * returned in "to". Otherwise, the value of "path" is
43 * returned in "to".
49 abspath(char *path, char *dot, string *to)
52 to = s_append(to, path);
54 to = s_append(to, dot);
55 to = s_append(to, path);
57 return (to);