summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2005-07-12 15:26:24 +0000
committerRussell Bryant <russell@russellbryant.com>2005-07-12 15:26:24 +0000
commitb62623fdaae82162f3e0b2d94210ade907a09251 (patch)
treee03c553bf26ea496fde0f4b79fa8cb341f8bb76b /include
parent4f64fe03f06ca80ef51d89ef9c3e811225b3f454 (diff)
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
Diffstat (limited to 'include')
-rwxr-xr-xinclude/asterisk/strings.h10
1 files changed, 3 insertions, 7 deletions
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