| 111 | } |
| 112 | |
| 113 | gboolean |
| 114 | check_boolean(const char *value) |
| 115 | { |
| 116 | int tmp = FALSE; |
| 117 | |
| 118 | if (crm_str_to_boolean(value, &tmp) != 1) { |
| 119 | return FALSE; |
| 120 | } |
| 121 | return TRUE; |
| 122 | } |
| 123 | |
| 124 | gboolean |
| 125 | check_number(const char *value) |
nothing calls this directly
no test coverage detected