Lines Matching defs:tmp
117 char *tmp;
124 tmp = strrchr (path, '\n');
125 if (tmp) *tmp = 0;
131 tmp = path + len - 10;
132 *tmp = 0;
191 char *tmp, *newpath;
196 tmp = br_locate_prefix (symbol);
197 if (!tmp) return NULL;
199 if (strcmp (tmp, "/") == 0)
202 newpath = br_strcat (tmp, path);
207 free (tmp);
386 char *tmp, *result;
394 tmp = br_strndup ((char *) path, end - path);
395 if (!*tmp)
397 free (tmp);
400 end = strrchr (tmp, '/');
401 if (!end) return tmp;
403 result = br_strndup (tmp, end - tmp);
404 free (tmp);