Unix and Linux Discussions Tagged with search |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
7 |
6,059 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,308 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,570 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,492 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
14,121 |
Shell Programming and Scripting |
|
|
|
2 |
2,918 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
8,426 |
Shell Programming and Scripting |
|
|
|
5 |
10,488 |
Shell Programming and Scripting |
|
|
|
2 |
4,464 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,301 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,471 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,264 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,174 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,481 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,698 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
22,053 |
What is on Your Mind? |
|
|
|
1 |
2,350 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,063 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
8,167 |
What is on Your Mind? |
|
|
|
0 |
22,861 |
What is on Your Mind? |
|
|
|
2 |
1,397 |
Shell Programming and Scripting |
|
|
|
6 |
10,808 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
3,206 |
Shell Programming and Scripting |
|
|
|
1 |
2,633 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
4,180 |
Shell Programming and Scripting |
|
|
|
28 |
14,674 |
What is on Your Mind? |
|
|
|
3 |
1,170 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
1,633 |
Shell Programming and Scripting |
|
|
|
1 |
2,053 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,315 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,269 |
Shell Programming and Scripting |
|
|
|
0 |
6,040 |
Web Development |
|
|
|
12 |
4,132 |
Programming |
|
|
|
4 |
1,139 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,359 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
2,817 |
Shell Programming and Scripting |
|
|
|
5 |
2,456 |
Programming |
|
|
|
9 |
1,641 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
971 |
Shell Programming and Scripting |
|
|
|
3 |
2,433 |
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)