From b62623fdaae82162f3e0b2d94210ade907a09251 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Tue, 12 Jul 2005 15:26:24 +0000 Subject: convert ast_copy_string to use AST_INLINE_API macro (bug #4682) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6108 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/strings.h | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'include') diff --git a/include/asterisk/strings.h b/include/asterisk/strings.h index 4fef8691c..2b845a837 100755 --- a/include/asterisk/strings.h +++ b/include/asterisk/strings.h @@ -135,12 +135,8 @@ char *ast_strip_quoted(char *s, const char *beg_quotes, const char *end_quotes); reduced buffer size to this function (unlike \a strncpy), and the buffer does not need to be initialized to zeroes prior to calling this function. */ -void ast_copy_string(char *dst, const char *src, size_t size); -#if !defined(LOW_MEMORY) && !defined(AST_API_MODULE) -extern inline -#endif -#if !defined(LOW_MEMORY) || defined(AST_API_MODULE) -void ast_copy_string(char *dst, const char *src, size_t size) +AST_INLINE_API( +void ast_copy_string(char *dst, const char *src, size_t size), { while (*src && size) { *dst++ = *src++; @@ -150,7 +146,7 @@ void ast_copy_string(char *dst, const char *src, size_t size) dst--; *dst = '\0'; } -#endif +) /*! \brief Build a string in a buffer, designed to be called repeatedly -- cgit v1.2.3