2 * I'm tired of doing "vsnprintf()" etc just to open a
3 * file, so here's a "return static buffer with printf"
6 * It's obviously not thread-safe. Sue me. But it's quite
7 * useful for doing things like
9 * f = open(mkpath("%s/%s.git", base, name), O_RDONLY);
11 * which is what it's designed for.
15 static char pathname[PATH_MAX];
16 static char bad_path[] = "/bad-path/";
18 static char *cleanup_path(char *path)
21 if (!memcmp(path, "./", 2)) {
29 char *mkpath(const char *fmt, ...)
35 len = vsnprintf(pathname, PATH_MAX, fmt, args);
39 return cleanup_path(pathname);
42 char *git_path(const char *fmt, ...)
44 const char *git_dir = gitenv(GIT_DIR_ENVIRONMENT) ? : DEFAULT_GIT_DIR_ENVIRONMENT;
48 len = strlen(git_dir);
49 if (len > PATH_MAX-100)
51 memcpy(pathname, git_dir, len);
52 if (len && git_dir[len-1] != '/')
53 pathname[len++] = '/';
55 len += vsnprintf(pathname + len, PATH_MAX - len, fmt, args);
59 return cleanup_path(pathname);