/* * vim:ts=4:sw=4:expandtab * * i3 - an improved dynamic tiling window manager * © 2009 Michael Stapelberg and contributors (see also: LICENSE) * */ #include "libi3.h" #include #include #include /* * Reports whether str represents the enabled state (1, yes, true, …). * */ bool boolstr(const char *str) { return (strcasecmp(str, "1") == 0 || strcasecmp(str, "yes") == 0 || strcasecmp(str, "true") == 0 || strcasecmp(str, "on") == 0 || strcasecmp(str, "enable") == 0 || strcasecmp(str, "active") == 0); }