Start the 2.46 cycle
[alt-git.git] / parse.h
blob07d2193d6984abcb8d4f6683e9dbb90e9e8876e9
1 #ifndef PARSE_H
2 #define PARSE_H
4 int git_parse_signed(const char *value, intmax_t *ret, intmax_t max);
5 int git_parse_ssize_t(const char *, ssize_t *);
6 int git_parse_ulong(const char *, unsigned long *);
7 int git_parse_int(const char *value, int *ret);
8 int git_parse_int64(const char *value, int64_t *ret);
10 /**
11 * Same as `git_config_bool`, except that it returns -1 on error rather
12 * than dying.
14 int git_parse_maybe_bool(const char *);
15 int git_parse_maybe_bool_text(const char *value);
17 int git_env_bool(const char *, int);
18 unsigned long git_env_ulong(const char *, unsigned long);
20 #endif /* PARSE_H */