diff options
author | Jeff King <peff@peff.net> | 2014-05-23 22:03:47 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-05-23 23:09:58 +0200 |
commit | ffb20ce125f0ffe59002b1258b06c26747b69b7b (patch) | |
tree | fe26b2149508f289c112f98df1800a1f30e284c0 /Documentation/technical/api-strbuf.txt | |
parent | Update draft release notes to 2.0 (diff) | |
download | git-ffb20ce125f0ffe59002b1258b06c26747b69b7b.tar.xz git-ffb20ce125f0ffe59002b1258b06c26747b69b7b.zip |
strbuf: add strbuf_tolower function
This is a convenience wrapper to call tolower on each
character of the string.
This makes config's lowercase() function obsolete, though
note that because we have a strbuf, we are careful to
operate over the whole strbuf, rather than assuming that a
NUL is the end-of-string.
We could continue to offer a pure-string lowercase, but
there would be no callers (in most pure-string cases, we
actually duplicate and lowercase the duplicate, for which we
have the xstrdup_tolower wrapper).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/technical/api-strbuf.txt')
-rw-r--r-- | Documentation/technical/api-strbuf.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/technical/api-strbuf.txt b/Documentation/technical/api-strbuf.txt index 3350d97dda..8480f8902d 100644 --- a/Documentation/technical/api-strbuf.txt +++ b/Documentation/technical/api-strbuf.txt @@ -125,6 +125,10 @@ Functions Strip whitespace from the end of a string. +`strbuf_tolower`:: + + Lowercase each character in the buffer using `tolower`. + `strbuf_cmp`:: Compare two buffers. Returns an integer less than, equal to, or greater |