aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/config.h
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-17 14:48:17 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-17 14:48:17 +0000
commita139ab742b8a9b652bcc6e79f4d195889e5c61f2 (patch)
tree0cfd16c35f2055ab98d157d65463674a6159e0ea /include/asterisk/config.h
parent9167e8ace85a6ecc0067c7b4ab3155c7e978bba8 (diff)
Make trunk build once again.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@75381 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/config.h')
-rw-r--r--include/asterisk/config.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/include/asterisk/config.h b/include/asterisk/config.h
index 71073f43e..06f5069fb 100644
--- a/include/asterisk/config.h
+++ b/include/asterisk/config.h
@@ -304,15 +304,17 @@ enum ast_parse_flags {
*
* Examples of use:
* ast_parse_arg("223", PARSE_INT32|PARSE_IN_RANGE,
- * &a, -1000, 1000); /* returns 0, a = 223 */
+ * &a, -1000, 1000);
+ * returns 0, a = 223
* ast_parse_arg("22345", PARSE_INT32|PARSE_IN_RANGE|PARSE_DEFAULT,
- * &a, 9999, 10, 100); /* returns 1, a = 9999 */
+ * &a, 9999, 10, 100);
+ * returns 1, a = 9999
* ast_parse_arg("22345ssf", PARSE_UINT32|PARSE_IN_RANGE, &b, 10, 100);
- * /* returns 1, b unchanged */
+ * returns 1, b unchanged
* ast_parse_arg("www.foo.biz:44", PARSE_INADDR, &sa);
- * /* returns 0, sa contains address and port */
+ * returns 0, sa contains address and port
* ast_parse_arg("www.foo.biz", PARSE_INADDR|PARSE_PORT_REQUIRE, &sa);
- * /* returns 1 because port is missing, sa contains address */
+ * returns 1 because port is missing, sa contains address
*/
int ast_parse_arg(const char *arg, enum ast_parse_flags flags,
void *result, ...);