summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/string.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2007-06-28 00:50:10 +0000
committerBenny Prijono <bennylp@teluu.com>2007-06-28 00:50:10 +0000
commitfbdd259dcedfaf197e35922d8018171a5d94b656 (patch)
tree3e588737d23bc5775cf342b0c743302cba08f964 /pjlib/include/pj/string.h
parentdc88226fa06a68d43dfcd716fc50635c0eddf535 (diff)
Fixed ticket #348: various bugs in string comparison functions
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1397 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include/pj/string.h')
-rw-r--r--pjlib/include/pj/string.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/pjlib/include/pj/string.h b/pjlib/include/pj/string.h
index 26e7fa6c..8124539f 100644
--- a/pjlib/include/pj/string.h
+++ b/pjlib/include/pj/string.h
@@ -341,7 +341,7 @@ PJ_IDECL(int) pj_strncmp2( const pj_str_t *str1, const char *str2,
pj_size_t len);
/**
- * Perform lowercase comparison to the strings.
+ * Perform case-insensitive comparison to the strings.
*
* @param str1 The string to compare.
* @param str2 The string to compare.
@@ -398,7 +398,7 @@ PJ_IDECL(int) pj_stricmp_alnum(const pj_str_t *str1, const pj_str_t *str2);
#endif
/**
- * Perform lowercase comparison to the strings.
+ * Perform case-insensitive comparison to the strings.
*
* @param str1 The string to compare.
* @param str2 The string to compare.
@@ -411,7 +411,7 @@ PJ_IDECL(int) pj_stricmp_alnum(const pj_str_t *str1, const pj_str_t *str2);
PJ_IDECL(int) pj_stricmp2( const pj_str_t *str1, const char *str2);
/**
- * Perform lowercase comparison to the strings.
+ * Perform case-insensitive comparison to the strings.
*
* @param str1 The string to compare.
* @param str2 The string to compare.
@@ -426,7 +426,7 @@ PJ_IDECL(int) pj_strnicmp( const pj_str_t *str1, const pj_str_t *str2,
pj_size_t len);
/**
- * Perform lowercase comparison to the strings.
+ * Perform case-insensitive comparison to the strings.
*
* @param str1 The string to compare.
* @param str2 The string to compare.