labwc/include/common/parse-bool.h
Johan Malm fa50149525 common/parse-bool.c: make parse_bool() generic
...to avoid multiple versions of a boolean-parser.

- Optionally take a default value
- Return -1 on error
- Rename get-bool.c to parse-bool.c
2023-04-26 15:11:31 +01:00

16 lines
530 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef __LABWC_PARSE_BOOL_H
#define __LABWC_PARSE_BOOL_H
#include <stdbool.h>
/**
* parse_bool() - Parse boolean value of string.
* @string: String to interpret. This check is case-insensitive.
* @default_value: Default value to use if string is not a recognised boolean.
* Use -1 to avoid setting a default value.
*
* Return: 0 for false; 1 for true; -1 for non-boolean
*/
int parse_bool(const char *str, int default_value);
#endif /* __LABWC_PARSE_BOOL_H */