From ce43ccfb75525aba40c2c3be82e5d9b129b047eb Mon Sep 17 00:00:00 2001 From: adnano Date: Mon, 26 Feb 2024 14:42:11 -0500 Subject: Add some comments to item and page --- main.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'main.c') diff --git a/main.c b/main.c index 3cd8eec..369799c 100644 --- a/main.c +++ b/main.c @@ -29,15 +29,15 @@ struct item { struct item *next; // traverses all items struct item *prev_match; // previous matching item struct item *next_match; // next matching item - struct page *page; + struct page *page; // the page holding this item }; // A page of menu items. struct page { - struct item *first; - struct item *last; - struct page *prev; - struct page *next; + struct item *first; // first item in the page + struct item *last; // last item in the page + struct page *prev; // previous page + struct page *next; // next page }; struct output { -- cgit v1.2.3