diff options
author | Leon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de> | 2020-09-25 09:55:46 +0200 |
---|---|---|
committer | Leon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de> | 2020-09-25 09:55:46 +0200 |
commit | 74a155389c20d4e546050c756b7fa94e445e1c1d (patch) | |
tree | a629f8a0c93eb1eaafcd361a79a30a68fc66d465 /src/misc.h | |
parent | 3a85053e4e72e7bd19790032e5851d2a6c785e9e (diff) | |
download | wlclock-74a155389c20d4e546050c756b7fa94e445e1c1d.tar.gz wlclock-74a155389c20d4e546050c756b7fa94e445e1c1d.tar.bz2 |
Implement all configuration options and signal handling
Diffstat (limited to 'src/misc.h')
-rw-r--r-- | src/misc.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,10 +1,14 @@ #ifndef WLCLOCK_MISC_H #define WLCLOCK_MISC_H +#include<stdbool.h> + struct Wlclock; void free_if_set (void *ptr); void set_string (char **ptr, char *arg); void clocklog (struct Wlclock *clock, int level, const char *fmt, ...); +bool is_boolean_true (const char *in); +bool is_boolean_false (const char *in); #endif |