aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/support
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-09-21 10:43:08 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-09-21 10:43:08 -0700
commitd533613a63431865e92ffa245fe463f072425196 (patch)
treee4cde18f8e317a3742f7773d3a460a5a7db0c531 /src/core/lib/support
parent0786490eb4378876ea2b4e7b3500bcf9d1781abe (diff)
Add documentation
Diffstat (limited to 'src/core/lib/support')
-rw-r--r--src/core/lib/support/string.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/lib/support/string.h b/src/core/lib/support/string.h
index 3aebc083ac..9a94e9471c 100644
--- a/src/core/lib/support/string.h
+++ b/src/core/lib/support/string.h
@@ -118,6 +118,8 @@ void gpr_strvec_add(gpr_strvec *strs, char *add);
total_length as per gpr_strjoin */
char *gpr_strvec_flatten(gpr_strvec *strs, size_t *total_length);
+/** Case insensitive string comparison... return <0 if lower(a)<lower(b), ==0 if
+ lower(a)==lower(b), >0 if lower(a)>lower(b) */
int gpr_stricmp(const char *a, const char *b);
#ifdef __cplusplus