utils: Move git__str[n]tolower
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
diff --git a/src/config.c b/src/config.c
index 234c530..cd0a73c 100644
--- a/src/config.c
+++ b/src/config.c
@@ -37,20 +37,6 @@ typedef struct {
int priority;
} backend_internal;
-void git__strntolower(char *str, int len)
-{
- int i;
-
- for (i = 0; i < len; ++i) {
- str[i] = tolower(str[i]);
- }
-}
-
-void git__strtolower(char *str)
-{
- git__strntolower(str, strlen(str));
-}
-
int git_config_open_bare(git_config **out, const char *path)
{
git_config_backend *backend = NULL;
diff --git a/src/config.h b/src/config.h
index e786e8a..a811fd8 100644
--- a/src/config.h
+++ b/src/config.h
@@ -9,7 +9,4 @@ struct git_config {
git_vector backends;
};
-void git__strtolower(char *str);
-void git__strntolower(char *str, int len);
-
#endif
diff --git a/src/util.c b/src/util.c
index 55a7ab2..9499cea 100644
--- a/src/util.c
+++ b/src/util.c
@@ -104,6 +104,20 @@ int git__fmt(char *buf, size_t buf_sz, const char *fmt, ...)
return r;
}
+void git__strntolower(char *str, int len)
+{
+ int i;
+
+ for (i = 0; i < len; ++i) {
+ str[i] = tolower(str[i]);
+ }
+}
+
+void git__strtolower(char *str)
+{
+ git__strntolower(str, strlen(str));
+}
+
int git__prefixcmp(const char *str, const char *prefix)
{
for (;;) {
diff --git a/src/util.h b/src/util.h
index ff6e67f..e5a2ebe 100644
--- a/src/util.h
+++ b/src/util.h
@@ -142,6 +142,9 @@ GIT_INLINE(int) git__is_sizet(git_off_t p)
extern char *git__strtok(char *output, char *src, char *delimit);
extern char *git__strtok_keep(char *output, char *src, char *delimit);
+extern void git__strntolower(char *str, int len);
+extern void git__strtolower(char *str);
+
#define STRLEN(str) (sizeof(str) - 1)
#define GIT_OID_LINE_LENGTH(header) (STRLEN(header) + 1 + GIT_OID_HEXSZ + 1)