mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-15 14:28:24 +00:00
realtimeify voicemail...
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3947 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -86,7 +86,7 @@ char *ast_variable_retrieve(struct ast_config *config, char *category, char *val
|
||||
* This function checks to see whether a string passed to it is an indication of an affirmitave value. It checks to see if the string is "yes", "true", "y", "t", and "1".
|
||||
* Returns 0 if the value of s is a NULL pointer, 0 on "truth", and -1 on falsehood.
|
||||
*/
|
||||
int ast_true(char *val);
|
||||
int ast_true(const char *val);
|
||||
|
||||
//! Make sure something is false
|
||||
/*!
|
||||
@@ -94,7 +94,7 @@ int ast_true(char *val);
|
||||
* This function checks to see whether a string passed to it is an indication of a negatirve value. It checks to see if the string is "no", "false", "n", "f", and "0".
|
||||
* Returns 0 if the value of s is a NULL pointer, 0 on "truth", and -1 on falsehood.
|
||||
*/
|
||||
int ast_false(char *val);
|
||||
int ast_false(const char *val);
|
||||
|
||||
//! Check for category duplicates
|
||||
/*!
|
||||
|
||||
Reference in New Issue
Block a user