8 lines
155 B
C
8 lines
155 B
C
|
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;
|
||
|
}
|