dmenu

Kris's build of dmenu
git clone git clone https://git.krisyotam.com/krisyotam/dmenu.git
Log | Files | Refs | README | LICENSE

center.c (156B)


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