From a79aad9d43494377709086e73ff7b66930bbdb38 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 16 May 2013 12:37:13 +0200 Subject: [PATCH] Add YAZ_EXPORT to functions in matchstr.h --- include/yaz/matchstr.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/yaz/matchstr.h b/include/yaz/matchstr.h index 778fa39..600cdaf 100644 --- a/include/yaz/matchstr.h +++ b/include/yaz/matchstr.h @@ -65,7 +65,8 @@ YAZ_EXPORT int yaz_strcmp_del(const char *a, const char *b, const char *b_del); \retval >0 a > b \retval <0 a < b */ -int yaz_memcmp(const void *a, const void *b, size_t len_a, size_t len_b); +YAZ_EXPORT int yaz_memcmp(const void *a, const void *b, + size_t len_a, size_t len_b); /** \brief ala strncasecmp - no locale \param s1 first buffer @@ -75,7 +76,7 @@ int yaz_memcmp(const void *a, const void *b, size_t len_a, size_t len_b); \retval >0 a > b \retval <0 a < b */ -int yaz_strncasecmp(const char *s1, const char *s2, size_t n); +YAZ_EXPORT int yaz_strncasecmp(const char *s1, const char *s2, size_t n); /** \brief ala strcasecmp - no locale \param s1 first buffer @@ -84,7 +85,7 @@ int yaz_strncasecmp(const char *s1, const char *s2, size_t n); \retval >0 a > b \retval <0 a < b */ -int yaz_strcasecmp(const char *s1, const char *s2); +YAZ_EXPORT int yaz_strcasecmp(const char *s1, const char *s2); YAZ_END_CDECL -- 1.7.10.4