more flexipatch

This commit is contained in:
2023-02-25 17:50:17 +01:00
parent ad060cc9d8
commit dc51ce018b
35 changed files with 3768 additions and 171 deletions

View File

@@ -0,0 +1,8 @@
static int
max_textw(void)
{
int len = 0;
for (struct item *item = items; item && item->text; item++)
len = MAX(TEXTW(item->text), len);
return len;
}