| 30 | #include "config.h" |
| 31 | |
| 32 | static bool |
| 33 | isTrue(const char *arg) |
| 34 | { |
| 35 | return (nullptr == arg || 0 == strncasecmp("true", arg, 4) || 0 == strncasecmp("1", arg, 1) || 0 == strncasecmp("yes", arg, 3)); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * trim from start |
no outgoing calls
no test coverage detected