nis-util
1.0.D108
|
#include <lib/rcstring.h>
Go to the source code of this file.
Functions | |
bool | boolean_from_string (const rcstring &text, bool &value) |
bool | boolean_from_string (const char *text, bool &value) |
const char * | string_from_boolean (bool value) |
bool boolean_from_string | ( | const rcstring & | text, |
bool & | value | ||
) |
The boolean_from_string function is used to convert a text string to a boolean value, if possible.
text | the text to be examined an converted |
value | the retured boolean value, when successful |
Definition at line 32 of file boolean.cc.
bool boolean_from_string | ( | const char * | text, |
bool & | value | ||
) |
The boolean_from_string function is used to convert a text string to a boolean value, if possible.
text | the text to be examined an converted |
value | the retured boolean value, when successful |
Definition at line 39 of file boolean.cc.
const char* string_from_boolean | ( | bool | value | ) |
The string_from_boolean function is used to convert a boolean value into a string, for printing (etc).
Definition at line 25 of file boolean.cc.