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 const char *item_name(const ITEM *item);
11 const char *item_description(const ITEM *item);
12
14 The function item_name returns the name part of the given item.
15 The function item_description returns the description part of the given
16 item.
17
19 These routines return a pointer (which may be NULL). They do not set
20 errno.
21
23 curses(3X), menu(3X).
24
26 The header file <menu.h> automatically includes the header file
27 <curses.h>.
28
30 These routines emulate the System V menu library. They were not sup‐
31 ported on Version 7 or BSD versions.
32
34 Juergen Pfeifer. Manual pages and adaptation for new curses by Eric S.
35 Raymond.
36
37
38
39 mitem_name(3X)