* Wrapper around getenv_bool to easily check for false. */
| 988 | * Wrapper around getenv_bool to easily check for false. |
| 989 | */ |
| 990 | bool |
| 991 | getenv_is_false(const char *name) |
| 992 | { |
| 993 | bool val; |
| 994 | |
| 995 | if (getenv_bool(name, &val) != 0) |
| 996 | return (!val); |
| 997 | return (false); |
| 998 | } |
| 999 | |
| 1000 | /* |
| 1001 | * Find the next entry after the one which (cp) falls within, return a |
nothing calls this directly
no test coverage detected