* xmlBoolToText: * @boolval: a bool to turn into text * * Convenient way to turn bool into text * * Returns a pointer to either "True" or "False" */
| 1773 | * Returns a pointer to either "True" or "False" |
| 1774 | */ |
| 1775 | const char * |
| 1776 | xmlBoolToText(int boolval) |
| 1777 | { |
| 1778 | if (boolval) |
| 1779 | return("True"); |
| 1780 | else |
| 1781 | return("False"); |
| 1782 | } |
| 1783 | |
| 1784 | #ifdef LIBXML_XPATH_ENABLED |
| 1785 | /**************************************************************** |
no outgoing calls
no test coverage detected