mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-157 adding icu_strstr [neeed for solaris DLL support]
X-SVN-Rev: 236
This commit is contained in:
parent
981fc8a22e
commit
e991a2450d
1 changed files with 1 additions and 0 deletions
|
@ -43,6 +43,7 @@
|
|||
#define icu_strcat(dst, src) strcat(dst, src)
|
||||
#define icu_strncat(dst, src, n) strncat(dst, src, n)
|
||||
#define icu_strchr(s, c) strchr(s, c)
|
||||
#define icu_strstr(s, c) strstr(s, c)
|
||||
#define icu_strrchr(s, c) strrchr(s, c)
|
||||
#define icu_toupper(c) toupper(c)
|
||||
#define icu_tolower(c) tolower(c)
|
||||
|
|
Loading…
Add table
Reference in a new issue