1mitem_name(3X) mitem_name(3X)
2
3
4
6 item_name, item_description - get menu item name and description fields
7
9 #include <menu.h>
10
11 const char *item_name(const ITEM *item);
12 const char *item_description(const ITEM *item);
13
15 The function item_name returns the name part of the given item.
16 The function item_description returns the description part of the given
17 item.
18
20 These routines return a pointer (which may be NULL). They do not set
21 errno.
22
24 curses(3X), menu(3X).
25
27 The header file <menu.h> automatically includes the header file
28 <curses.h>.
29
31 These routines emulate the System V menu library. They were not sup‐
32 ported on Version 7 or BSD versions.
33
35 Juergen Pfeifer. Manual pages and adaptation for new curses by Eric S.
36 Raymond.
37
38
39
40 mitem_name(3X)