improve performance of case-insensitive matching

This commit is contained in:
Hiltjo Posthuma 2022-02-07 00:21:12 +01:00 committed by Santiago Lo Coco
parent 09aa3c6c91
commit ca6b0d72ac
1 changed files with 2 additions and 11 deletions

13
dmenu.c
View File

@ -112,17 +112,6 @@ cleanup(void)
XCloseDisplay(dpy);
}
static char *
cistrstr(const char *s, const char *sub)
{
size_t len;
for (len = strlen(sub); *s; s++)
if (!strncasecmp(s, sub, len))
return (char *)s;
return NULL;
}
static int
drawitem(struct item *item, int x, int y, int w)
{
@ -748,6 +737,8 @@ main(int argc, char *argv[])
else if (!strcmp(argv[i], "-c")) /* centers dmenu on screen */
centered = 1;
else if (!strcmp(argv[i], "-i")) { /* case-insensitive item matching -- only for compatibility with scripts that uses this flag (in this build case-insensitive is the default) */
fstrncmp = strncasecmp;
fstrstr = strcasestr;
}
else if (!strcmp(argv[i], "-s")) { /* case-sensitive item matching */
fstrncmp = strncmp;