improve performance of case-insensitive matching
This commit is contained in:
parent
09aa3c6c91
commit
ca6b0d72ac
13
dmenu.c
13
dmenu.c
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue