summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/compat/string.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2005-11-20 19:55:42 +0000
committerBenny Prijono <bennylp@teluu.com>2005-11-20 19:55:42 +0000
commita605c06e12510600a67aaa86ea349037f613e53d (patch)
treecb001ad89f212ffaf6985eadc673230ccd25d7b9 /pjlib/include/pj/compat/string.h
parent66864977389a1a59bf7a5d38fcd62559190bb93e (diff)
Added hex character conversion utility in ctype
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@62 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include/pj/compat/string.h')
-rw-r--r--pjlib/include/pj/compat/string.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/pjlib/include/pj/compat/string.h b/pjlib/include/pj/compat/string.h
index 939f9e2d..df739819 100644
--- a/pjlib/include/pj/compat/string.h
+++ b/pjlib/include/pj/compat/string.h
@@ -44,12 +44,14 @@
#define pj_native_strcmp strcmp
+#define pj_native_strncmp strncmp
#define pj_native_strlen strlen
#define pj_native_strcpy strcpy
#define pj_native_strstr strstr
#define pj_native_strchr strchr
#define pj_native_strcasecmp strcasecmp
+#define pj_native_stricmp strcasecmp
#define pj_native_strncasecmp strncasecmp
-
+#define pj_native_strnicmp strncasecmp
#endif /* __PJ_COMPAT_STRING_H__ */