This commit was manufactured by cvs2svn to create tag 'v0_9_0'.

git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/v0_9_0@2684 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Admin Commit
2004-04-13 04:46:23 +00:00
parent 860f35a7ab
commit a54e196ea4
98 changed files with 1362 additions and 795 deletions

View File

@@ -128,6 +128,20 @@ int ast_true(char *s)
return 0;
}
int ast_false(char *s)
{
if (!s)
return 0;
/* Determine if this is a false value */
if (!strcasecmp(s, "no") ||
!strcasecmp(s, "false") ||
!strcasecmp(s, "n") ||
!strcasecmp(s, "f") ||
!strcasecmp(s, "0"))
return -1;
return 0;
}
struct ast_variable *ast_variable_browse(struct ast_config *config, char *category)
{
struct ast_category *cat;