blob: 6720fa896570d600520343bfc8a6fcf6751cd8ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef UTIL_ENV_H
#define UTIL_ENV_H
#include <stdbool.h>
#include <unistd.h>
bool env_parse_bool(const char *option);
ssize_t env_parse_switch(const char *option, const char **switches);
#endif
|