diff options
| author | Carlos Martín Nieto <cmn@elego.de> | 2011-04-06 15:31:42 +0200 |
|---|---|---|
| committer | Carlos Martín Nieto <cmn@elego.de> | 2011-04-06 15:31:42 +0200 |
| commit | acab3bc474760216ccafcad9d6cdaf381cdafc72 (patch) | |
| tree | e5e78ce9eec18f98e8bb71b54431af342b890365 /src/config.h | |
| parent | aa793424d3b27351db44e60121598fcc738540e5 (diff) | |
| download | libgit2-acab3bc474760216ccafcad9d6cdaf381cdafc72.tar.gz | |
config: move str(n)tolower to the git__ namespace
Non-static functions in a library should always have a prefix
namespace.
Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
Diffstat (limited to 'src/config.h')
| -rw-r--r-- | src/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.h b/src/config.h index c8e9fe062..1e954ff81 100644 --- a/src/config.h +++ b/src/config.h @@ -30,7 +30,7 @@ struct git_cvar { #define CVAR_LIST_FOREACH(start, iter) \ for ((iter) = (start); (iter) != NULL; (iter) = (iter)->next) -void strtolower(char *str); -void strntolower(char *str, int len); +void git__strtolower(char *str); +void git__strntolower(char *str, int len); #endif |
