aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2018-09-01 11:45:48 +1000
committerFurkan Sahin <furkan-dev@proton.me>2018-09-01 11:45:48 +1000
commit4417e106e40044f560940c0476c7a91f4ed3ba09 (patch)
tree924c61d27afcd3120f99137662d8f83a39769d1e /include
parent43833aa08e6a2106b0cc561eb08a62691f5ec538 (diff)
Allow reload command to exist anywhere in the command string
This fixes a crash if you have commands where reload appears in the middle or at the end, such as `bindsym r mode default, reload`.
Diffstat (limited to 'include')
-rw-r--r--include/stringop.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/stringop.h b/include/stringop.h
index e7f58011..01bbdaa9 100644
--- a/include/stringop.h
+++ b/include/stringop.h
@@ -46,4 +46,6 @@ char *cmdsep(char **stringp, const char *delim);
// Split string into 2 by delim, handle quotes
char *argsep(char **stringp, const char *delim);
+const char *strcasestr(const char *haystack, const char *needle);
+
#endif