X-Git-Url: http://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fmitem_new.3x.html;h=bb3160d866a8e2413d79304fdbf8dc17545776ae;hb=f9994a48d2f74b613a0adb19d3917f724d4d1312;hp=1a527080bfeef3a03fc8870617c3988fdb2c70d9;hpb=bca50d0d8592defee6c584fdedd25f4b1a31345b;p=ncurses.git diff --git a/doc/html/man/mitem_new.3x.html b/doc/html/man/mitem_new.3x.html index 1a527080..bb3160d8 100644 --- a/doc/html/man/mitem_new.3x.html +++ b/doc/html/man/mitem_new.3x.html @@ -1,7 +1,8 @@ - @@ -35,7 +36,7 @@ mitem_new 3x - + @@ -52,23 +53,24 @@

SYNOPSIS

        #include <menu.h>
-       ITEM *new_item(const char *name, const char *description);
-       int free_item(ITEM *item);
+
+       ITEM *new_item(const char *name, const char *description);
+       int free_item(ITEM *item);
 
 
 

DESCRIPTION

        The  function new_item allocates a new item and initializes it from the
-       name and description pointers. Please notice that the item stores  only
-       the  pointers to the name and description. Those pointers must be valid
-       during the lifetime of the item. So you should  be  very  careful  with
+       name and description pointers.  Please notice that the item stores only
+       the pointers to the name and description.  Those pointers must be valid
+       during the lifetime of the item.  So you should be  very  careful  with
        names or descriptions allocated on the stack of some routines.
-       The  function  free_item de-allocates an item. Please notice that it is
+       The  function free_item de-allocates an item.  Please notice that it is
        the responsibility of the application to release  the  memory  for  the
        name or the description of the item.
 
 
 

RETURN VALUE

-       The  function  new_item returns NULL on error.  It sets errno according
+       The  function  new_item returns NULL on error.  It sets errno according
        to the function's failure:
 
        E_BAD_ARGUMENT
@@ -88,7 +90,7 @@
             Item is connected to a menu.
 
        E_SYSTEM_ERROR
-            System error occurred (see errno).
+            System error occurred (see errno(3)).
 
 
 

SEE ALSO

@@ -101,8 +103,8 @@
 
 
 

PORTABILITY

-       These  routines  emulate the System V menu library.  They were not sup-
-       ported on Version 7 or BSD versions.
+       These  routines  emulate  the  System  V  menu  library.  They were not
+       supported on Version 7 or BSD versions.
 
 
 

AUTHORS