With git_config_bool_or_int, the caller can differentiate boolean true
and integer 1 etc.
Signed-off-by: Ping Yin <redacted>
---
config.c | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/config.c b/config.c
index 0624494..e614456 100644
--- a/config.c
+++ b/config.c
@@ -316,6 +316,21 @@ int git_config_bool(const char *name, const char *value)
return git_config_int(name, value) != 0;
}
+int git_config_bool_or_int(const char *name, const char *value, int *is_bool)
+{
+ *is_bool = 1;
+ if (!value)
+ return 1;
+ if (!*value)
+ return 0;
+ if (!strcasecmp(value, "true") || !strcasecmp(value, "yes"))
+ return 1;
+ if (!strcasecmp(value, "false") || !strcasecmp(value, "no"))
+ return 0;
+ *is_bool = 0;
+ return git_config_int(name, value);
+}
+
int git_config_string(const char **dest, const char *var, const char *value)
{
if (!value)--
1.5.5.23.g2a5f