Lines Matching defs:buf
55 char buf[PATH_MAX];
60 path = buf;
75 getcwd(buf, sizeof(buf));
76 s = buf + strlen(buf);
77 sfsprintf(s, sizeof(buf) - (s - buf), "/%s", p);
78 if (path != buf)
79 strcpy(path, buf);
81 return (path == buf) ? strdup(path) : path;
100 if (strlen(s) < (sizeof(buf) - 6))
111 return path == buf ? strdup(s) : s;
122 return (s && path == buf) ? strdup(s) : s;