aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradnano <me@adnano.co>2024-02-27 11:34:17 -0500
committeradnano <me@adnano.co>2024-02-27 11:34:17 -0500
commit0db7efe2324a4b2656fa117d9c7bdf84fc7fcbc1 (patch)
treea05d88dc291a447290452fcf9ec5b5e7db63bebd
parente8782db9c840e42827dafa4ec1ca9849f91b9b59 (diff)
downloadwmenu-0db7efe2324a4b2656fa117d9c7bdf84fc7fcbc1.tar.gz
Simplify read_menu_items
-rw-r--r--menu.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/menu.c b/menu.c
index b85cc2a..c646666 100644
--- a/menu.c
+++ b/menu.c
@@ -293,20 +293,22 @@ static void match_items(struct menu *menu) {
// Read menu items from standard input.
void read_menu_items(struct menu *menu) {
- char buf[sizeof menu->input], *p;
- struct item *item, **end;
+ char buf[sizeof menu->input];
- for(end = &menu->items; fgets(buf, sizeof buf, stdin); *end = item, end = &item->next) {
- if((p = strchr(buf, '\n'))) {
+ struct item **next = &menu->items;
+ while (fgets(buf, sizeof buf, stdin)) {
+ char *p = strchr(buf, '\n');
+ if (p) {
*p = '\0';
}
- item = malloc(sizeof *item);
+ struct item *item = calloc(1, sizeof *item);
if (!item) {
return;
}
-
item->text = strdup(buf);
- item->next = item->prev_match = item->next_match = NULL;
+
+ *next = item;
+ next = &item->next;
}
calc_widths(menu);