From b6486df40eb4e37d20c387ad386248231383f0e8 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Fri, 15 Jul 2005 00:39:01 +0000 Subject: first phase of proper fix for portable string function problems (bug #4669) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6133 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/strings.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/asterisk/strings.h b/include/asterisk/strings.h index 2b845a837..f6902ef1b 100755 --- a/include/asterisk/strings.h +++ b/include/asterisk/strings.h @@ -199,8 +199,12 @@ struct ast_realloca { #ifdef __linux__ #define ast_strcasestr strcasestr -#else -extern char *ast_strcasestr(const char *, const char *); -#endif /* __linux__ */ +#define ast_strndup strndup +#define ast_strnlen strnlen +#else /* !__linux__ */ +char *ast_strcasestr(const char *, const char *); +char *ast_strndup(const char *, size_t); +size_t ast_strnlen(const char *, size_t); +#endif /* !__linux__ */ #endif /* _ASTERISK_STRINGS_H */ -- cgit v1.2.3