Unix and Linux Discussions Tagged with search |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
7 |
6,133 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,314 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,599 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,511 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
14,139 |
Shell Programming and Scripting |
|
|
|
2 |
2,923 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
8,428 |
Shell Programming and Scripting |
|
|
|
5 |
10,494 |
Shell Programming and Scripting |
|
|
|
2 |
4,486 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,303 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,474 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,273 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,175 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,483 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,700 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
22,078 |
What is on Your Mind? |
|
|
|
1 |
2,360 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,067 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
8,169 |
What is on Your Mind? |
|
|
|
0 |
22,884 |
What is on Your Mind? |
|
|
|
2 |
1,400 |
Shell Programming and Scripting |
|
|
|
6 |
10,826 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
3,206 |
Shell Programming and Scripting |
|
|
|
1 |
2,633 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
4,181 |
Shell Programming and Scripting |
|
|
|
28 |
14,691 |
What is on Your Mind? |
|
|
|
3 |
1,174 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
1,633 |
Shell Programming and Scripting |
|
|
|
1 |
2,055 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,319 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,272 |
Shell Programming and Scripting |
|
|
|
0 |
6,050 |
Web Development |
|
|
|
12 |
4,145 |
Programming |
|
|
|
4 |
1,139 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,362 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
2,819 |
Shell Programming and Scripting |
|
|
|
5 |
2,459 |
Programming |
|
|
|
9 |
1,651 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
975 |
Shell Programming and Scripting |
|
|
|
3 |
2,437 |
UNIX for Beginners Questions & Answers |
search.h(3HEAD) Headers search.h(3HEAD)
NAME
search.h, search - search tables
SYNOPSIS
#include <search.h>
DESCRIPTION
The <search.h> header defines the ENTRY type for structure entry, which includes the following members:
char *key
void *data
and defines ACTION and VISIT as enumeration data types through type definitions as follows:
enum { FIND, ENTER } ACTION;
enum { preorder, postorder, endorder, leaf } VISIT;
The size_t type is defined as described in <sys/types.h>. See types.h(3HEAD).
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Interface Stability |Standard |
+-----------------------------+-----------------------------+
SEE ALSO
hsearch(3C), insque(3C), lsearch(3C), tsearch(3C), types.h(3HEAD), attributes(5), standards(5)
SunOS 5.10 10 Sep 2004 search.h(3HEAD)