summaryrefslogtreecommitdiff
path: root/strbuf.h
diff options
context:
space:
mode:
authorLars Schneider <larsxschneider@gmail.com>2018-02-15 15:27:06 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-02-15 19:36:15 (GMT)
commit13ecb4638ed92a56e855d2e6d3a9b71c4125eb51 (patch)
treee41558dc45dea5b4dd1a61c9440edada8f351b37 /strbuf.h
parenta8270b0980f88a918f9135e02e86ac6143848d95 (diff)
downloadgit-13ecb4638ed92a56e855d2e6d3a9b71c4125eb51.zip
git-13ecb4638ed92a56e855d2e6d3a9b71c4125eb51.tar.gz
git-13ecb4638ed92a56e855d2e6d3a9b71c4125eb51.tar.bz2
strbuf: add xstrdup_toupper()
Create a copy of an existing string and make all characters upper case. Similar xstrdup_tolower(). This function is used in a subsequent commit. Signed-off-by: Lars Schneider <larsxschneider@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'strbuf.h')
-rw-r--r--strbuf.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/strbuf.h b/strbuf.h
index 14c8c10..df7ced5 100644
--- a/strbuf.h
+++ b/strbuf.h
@@ -607,6 +607,7 @@ __attribute__((format (printf,2,3)))
extern int fprintf_ln(FILE *fp, const char *fmt, ...);
char *xstrdup_tolower(const char *);
+char *xstrdup_toupper(const char *);
/**
* Create a newly allocated string using printf format. You can do this easily