aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rwxr-xr-xinclude/asterisk/utils.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/asterisk/utils.h b/include/asterisk/utils.h
index 9cabe679d..06805e82d 100755
--- a/include/asterisk/utils.h
+++ b/include/asterisk/utils.h
@@ -131,6 +131,27 @@ struct ast_hostent {
};
/*!
+ \brief Gets a pointer to the first non-whitespace character in a string.
+ \param str the input string
+ \return a pointer to the first non-whitespace character
+ */
+char *ast_skip_blanks(char *str);
+
+/*!
+ \brief Trims trailing whitespace characters from a string.
+ \param str the input string
+ \return a pointer to the NULL following the string
+ */
+char *ast_trim_blanks(char *str);
+
+/*!
+ \brief Gets a pointer to first whitespace character in a string.
+ \param str the input string
+ \return a pointer to the first whitespace character
+ */
+char *ast_skip_nonblanks(char *str);
+
+/*!
\brief Strip leading/trailing whitespace from a string.
\param s The string to be stripped (will be modified).
\return The stripped string.