commit 56ee7df94d001a3406af2707a4280b1fbe8cd54d from: Omar Polo date: Mon May 16 21:25:32 2022 UTC use strcasestr(3) unconditionally commit - 8222234e05c61264c0c9cf8247ee4dbb7e410a5b commit + 56ee7df94d001a3406af2707a4280b1fbe8cd54d blob - c35e85756b56d000c09bb0f23fe6ebdbd1b72aa1 blob + c044ad161a83f62215fc8410566abaf7565d6f7e --- mymenu.c +++ mymenu.c @@ -36,14 +36,6 @@ #define MAX(a, b) ((a) > (b) ? (a) : (b)) #define EXPANDBITS(x) (((x & 0xf0) * 0x100) | (x & 0x0f) * 0x10) - -/* - * If we don't have or we don't want an "ignore case" completion - * style, fall back to `strstr(3)` - */ -#ifndef USE_STRCASESTR -#define strcasestr strstr -#endif #define inner_height(r) (r->height - r->borders[0] - r->borders[2]) #define inner_width(r) (r->width - r->borders[1] - r->borders[3])