form_new(S)
form_new: new_form, free_form --
create and destroy forms
Syntax
cc ... -lform -lcurses 
#include <form.h>
FORM *new_form(FIELD **fields);
int free_form(FORM *form);
Description
new_form(S)
creates a new form connected to the designated fields
and returns a pointer to the form.
free_form(S)
disconnects the form from its associated field
pointer array and deallocates the space for the form.
Return values
new_form( )
always returns NULL on error.
free_form( )
returns one of the following:
| E_OK | - | The function returned successfully. | 
| E_BAD_ARGUMENT | - | An argument is incorrect. | 
| E_POSTED | - | The form is posted. | 
Warning
The header file form.h automatically includes the header files
eti.h and curses.h.
Files
 /usr/lib/libform.a
- 
the library
See also
curses(S),
forms(S)
Standards conformance
new_form(S)
and
free_form(S)
are not part of any currently supported standard;
they were developed by UNIX System Laboratories, Inc.
and are maintained by The SCO Group.
© 2003 Caldera International, Inc.  All rights reserved.
SCO OpenServer Release 5.0.7 -- 11 February 2003