aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRyan Dwyer <RyanDwyer@users.noreply.github.com>2018-07-24 19:23:04 +1000
committerGitHub <noreply@github.com>2018-07-24 19:23:04 +1000
commite02a6718c2c7313309b45e499034d614ee6207fc (patch)
tree429de47906f0ba1f114689c48cbabc5be8bb6e71 /include
parent94dd8823a0081f7983dce368d5d093d1d3eeaefe (diff)
parent6ccf2a2c66c1264450a4b3ab3dd344e1b3b44ca3 (diff)
Merge branch 'master' into mouse-bindings
Diffstat (limited to 'include')
-rw-r--r--include/util.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/util.h b/include/util.h
index f68deae8..bda941ce 100644
--- a/include/util.h
+++ b/include/util.h
@@ -51,6 +51,14 @@ pid_t get_parent_pid(pid_t pid);
uint32_t parse_color(const char *color);
/**
+ * Given a string that represents a boolean, return the boolean value. This
+ * function also takes in the current boolean value to support toggling. If
+ * toggling is not desired, pass in true for current so that toggling values
+ * get parsed as not true.
+ */
+bool parse_boolean(const char *boolean, bool current);
+
+/**
* Given a path string, recurseively resolves any symlinks to their targets
* (which may be a file, directory) and returns the result.
* argument is returned. Caller must free the returned buffer.