Unix and Linux Discussions Tagged with field |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
5,882 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
135,418 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
5 |
6,090 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
5,166 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
15,373 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,730 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,255 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,762 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,943 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,551 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
10,351 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,562 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
5,101 |
Shell Programming and Scripting |
|
|
|
1 |
2,322 |
UNIX for Beginners Questions & Answers |
|
|
|
17 |
5,880 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,751 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,813 |
UNIX for Beginners Questions & Answers |
|
|
|
27 |
6,690 |
Shell Programming and Scripting |
|
|
|
2 |
1,491 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
1,687 |
Shell Programming and Scripting |
|
|
|
7 |
3,356 |
Shell Programming and Scripting |
|
|
|
4 |
2,240 |
Shell Programming and Scripting |
|
|
|
9 |
3,757 |
Shell Programming and Scripting |
|
|
|
2 |
1,863 |
Shell Programming and Scripting |
|
|
|
3 |
2,589 |
Shell Programming and Scripting |
|
|
|
1 |
3,954 |
Shell Programming and Scripting |
|
|
|
6 |
9,284 |
Shell Programming and Scripting |
|
|
|
6 |
2,211 |
Shell Programming and Scripting |
|
|
|
11 |
10,213 |
Shell Programming and Scripting |
|
|
|
1 |
1,759 |
Shell Programming and Scripting |
|
|
|
8 |
6,042 |
Shell Programming and Scripting |
|
|
|
4 |
3,049 |
Shell Programming and Scripting |
|
|
|
2 |
2,350 |
Shell Programming and Scripting |
|
|
|
5 |
9,676 |
Shell Programming and Scripting |
|
|
|
1 |
2,730 |
Shell Programming and Scripting |
|
|
|
6 |
4,515 |
Shell Programming and Scripting |
|
|
|
7 |
4,951 |
Shell Programming and Scripting |
|
|
|
2 |
7,207 |
Shell Programming and Scripting |
|
|
|
3 |
5,943 |
Shell Programming and Scripting |
|
|
|
2 |
2,135 |
Shell Programming and Scripting |
form_field_validation(3CURSES) Curses Library Functions form_field_validation(3CURSES)
NAME
form_field_validation, set_field_type, field_type, field_arg - forms field data type validation
SYNOPSIS
cc [ flag... ] file... -lform -lcurses [ library... ]
#include <form.h>
int set_field_type(FIELD *field, FIELDTYPE *type...);
FIELDTYPE *field_type(FIELD *field);
char *field_arg(FIELD *field);
DESCRIPTION
set_field_type() associates the specified field type with field. Certain field types take additional arguments. TYPE_ALNUM, for instance,
requires one, the minimum width specification for the field. The other predefined field types are: TYPE_ALPHA, TYPE_ENUM, TYPE_INTEGER,
TYPE_NUMERIC, and TYPE_REGEXP.
field_type() returns a pointer to the field type of field. NULL is returned if no field type is assigned.
field_arg() returns a pointer to the field arguments associated with the field type of field. NULL is returned if no field type is
assigned.
RETURN VALUES
field_type() and field_arg() return NULL on error.
set_field_type() returns one of the following:
E_OK The function returned successfully.
E_SYSTEM_ERROR System error.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|MT-Level |Unsafe |
+-----------------------------+-----------------------------+
SEE ALSO
curses(3CURSES), forms(3CURSES), attributes(5)
NOTES
The header <form.h> automatically includes the headers <eti.h> and <curses.h>.
SunOS 5.11 31 Dec 1996 form_field_validation(3CURSES)