mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
9 lines
156 B
C
9 lines
156 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;
|
|
}
|