Add function ast_false, like ast_true

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2289 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
James Golovich
2004-03-02 07:57:06 +00:00
parent 8f73da1f79
commit 7409bc052d
2 changed files with 22 additions and 0 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;