From e991a2450d9e896d30369f996c18c90b25121979 Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Tue, 23 Nov 1999 05:07:20 +0000 Subject: [PATCH] ICU-157 adding icu_strstr [neeed for solaris DLL support] X-SVN-Rev: 236 --- icu4c/source/common/cstring.h | 1 + 1 file changed, 1 insertion(+) diff --git a/icu4c/source/common/cstring.h b/icu4c/source/common/cstring.h index 8782e2afca0..0b6d9500298 100644 --- a/icu4c/source/common/cstring.h +++ b/icu4c/source/common/cstring.h @@ -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)