| 306 | *----------------------------------------------------------------------------*/ |
| 307 | |
| 308 | int truefalsetoi(char *s) { |
| 309 | if (!strcasecmp(s,"true")) return 1; |
| 310 | else if (!strcasecmp(s,"false")) return 0; |
| 311 | else return -1; |
| 312 | } |
| 313 | |
| 314 | int yesnotoi(char *s) { |
| 315 | if (!strcasecmp(s,"yes")) return 1; |
no outgoing calls
no test coverage detected