summaryrefslogtreecommitdiff
path: root/include/asterisk/strings.h
diff options
context:
space:
mode:
authorJason Parker <jparker@digium.com>2007-09-05 16:31:39 +0000
committerJason Parker <jparker@digium.com>2007-09-05 16:31:39 +0000
commitd72ea80a00d2b47421890f7202e1d8d417b8612a (patch)
treef7633ff4bac526f50ea47b6d518c8d132ac84b6e /include/asterisk/strings.h
parent504f8a09afa81a40b9d86f8a878cbee7617f4dde (diff)
Doxygen cleanups/fixes.
Closes issue #10654, patch by snuffy git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@81560 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/strings.h')
-rw-r--r--include/asterisk/strings.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/asterisk/strings.h b/include/asterisk/strings.h
index d542ef8d8..6038318e7 100644
--- a/include/asterisk/strings.h
+++ b/include/asterisk/strings.h
@@ -238,14 +238,14 @@ int ast_true(const char *val);
int ast_false(const char *val);
/*
- \brief Join an array of strings into a single string.
- \param s the resulting string buffer
- \param len the length of the result buffer, s
- \param w an array of strings to join
-
- This function will join all of the strings in the array 'w' into a single
- string. It will also place a space in the result buffer in between each
- string from 'w'.
+ * \brief Join an array of strings into a single string.
+ * \param s the resulting string buffer
+ * \param len the length of the result buffer, s
+ * \param w an array of strings to join.
+ *
+ * This function will join all of the strings in the array 'w' into a single
+ * string. It will also place a space in the result buffer in between each
+ * string from 'w'.
*/
void ast_join(char *s, size_t len, char * const w[]);