aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/cli.h
diff options
context:
space:
mode:
authorrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-31 10:29:50 +0000
committerrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-31 10:29:50 +0000
commit7f4ae1ebd634e7bb7ec7e85e39529251f36dfa3b (patch)
tree8fc86911fe0f6b74bba1c1fbd4a2a3f330aa8287 /include/asterisk/cli.h
parentfd244115bbd842332520b177d20de384f5350ad9 (diff)
removal of trailing whitespace and useless 'extern'
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@16653 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/cli.h')
-rw-r--r--include/asterisk/cli.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/asterisk/cli.h b/include/asterisk/cli.h
index d9c9b7ab3..02cdb290f 100644
--- a/include/asterisk/cli.h
+++ b/include/asterisk/cli.h
@@ -44,7 +44,7 @@ void ast_cli(int fd, char *fmt, ...)
#define AST_CLI_COMPLETE_EOF "_EOF_"
-/*! \brief A command line entry */
+/*! \brief A command line entry */
struct ast_cli_entry {
char * const cmda[AST_MAX_CMD_LEN];
/*! Handler for the command (fd for output, # of args, argument list).
@@ -95,20 +95,20 @@ struct ast_cli_entry {
*/
char *ast_cli_complete(const char *word, char *const choices[], int pos);
-/*! \brief Interprets a command
+/*! \brief Interprets a command
* Interpret a command s, sending output to fd
- * Returns 0 on succes, -1 on failure
+ * Returns 0 on succes, -1 on failure
*/
int ast_cli_command(int fd, const char *s);
-/*! \brief Registers a command or an array of commands
+/*! \brief Registers a command or an array of commands
* \param e which cli entry to register
* Register your own command
* Returns 0 on success, -1 on failure
*/
int ast_cli_register(struct ast_cli_entry *e);
-/*!
+/*!
* \brief Register multiple commands
* \param e pointer to first cli entry to register
* \param len number of entries to register
@@ -130,7 +130,7 @@ int ast_cli_unregister(struct ast_cli_entry *e);
*/
void ast_cli_unregister_multiple(struct ast_cli_entry *e, int len);
-/*! \brief Readline madness
+/*! \brief Readline madness
* Useful for readline, that's about it
* Returns 0 on success, -1 on failure
*/
@@ -140,7 +140,7 @@ int ast_cli_generatornummatches(const char *, const char *);
/*!
* \brief Generates a NULL-terminated array of strings that
- * 1) begin with the string in the second parameter, and
+ * 1) begin with the string in the second parameter, and
* 2) are valid in a command after the string in the first parameter.
*
* The first entry (offset 0) of the result is the longest common substring