summaryrefslogtreecommitdiff
path: root/include/asterisk/config.h
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-06-24 22:45:15 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-06-24 22:45:15 +0000
commit3e44b65090f3f2b5b3e0c1e8e11bf34a1b01afc8 (patch)
tree3f0f4640d39f272360a860fb49ea3a284b99f757 /include/asterisk/config.h
parent3ddc33f6743c21878afc0632f66eb1c7b880326e (diff)
split up string/time functions into separate header files
make more LOW_MEMORY optimizations, and ensure that a non-inline version of each inlinable function is always available (for external modules) move compiler-specific stuff into a separate header file git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6008 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/config.h')
-rwxr-xr-xinclude/asterisk/config.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/asterisk/config.h b/include/asterisk/config.h
index 17fe05ec4..4b9a3c529 100755
--- a/include/asterisk/config.h
+++ b/include/asterisk/config.h
@@ -99,24 +99,6 @@ struct ast_variable *ast_variable_browse(const struct ast_config *config, const
*/
char *ast_variable_retrieve(const struct ast_config *config, const char *category, const char *variable);
-/*! Make sure something is true */
-/*!
- * Determine if a string containing a boolean value is "true".
- * This function checks to see whether a string passed to it is an indication of an "true" value. It checks to see if the string is "yes", "true", "y", "t", "on" or "1".
- *
- * Returns 0 if val is a NULL pointer, -1 if "true", and 0 otherwise.
- */
-int ast_true(const char *val);
-
-/*! Make sure something is false */
-/*!
- * Determine if a string containing a boolean value is "false".
- * This function checks to see whether a string passed to it is an indication of an "false" value. It checks to see if the string is "no", "false", "n", "f", "off" or "0".
- *
- * Returns 0 if val is a NULL pointer, -1 if "false", and 0 otherwise.
- */
-int ast_false(const char *val);
-
/*! Retrieve a category if it exists */
/*!
* \param config which config to use