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`.
This commit is contained in:
Ryan Dwyer 2018-09-01 11:45:48 +10:00
parent ebe65a4d48
commit 7e81e58e7d
3 changed files with 17 additions and 1 deletions

View file

@ -401,3 +401,17 @@ char *argsep(char **stringp, const char *delim) {
found:
return start;
}
const char *strcasestr(const char *haystack, const char *needle) {
size_t needle_len = strlen(needle);
const char *pos = haystack;
const char *end = pos + strlen(haystack) - needle_len;
while (pos <= end) {
if (strncasecmp(pos, needle, needle_len) == 0) {
return pos;
}
++pos;
}
return NULL;
}