]> git.ipfire.org Git - thirdparty/git.git/blob - environment.h
treewide: remove unnecessary includes of cache.h
[thirdparty/git.git] / environment.h
1 #ifndef ENVIRONMENT_H
2 #define ENVIRONMENT_H
3
4 #include "strvec.h"
5
6 /*
7 * The character that begins a commented line in user-editable file
8 * that is subject to stripspace.
9 */
10 extern char comment_line_char;
11 extern int auto_comment_line_char;
12
13 /*
14 * Wrapper of getenv() that returns a strdup value. This value is kept
15 * in argv to be freed later.
16 */
17 const char *getenv_safe(struct strvec *argv, const char *name);
18
19 #endif