Unix and Linux Discussions Tagged with search |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
7 |
6,023 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,302 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,557 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,489 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
14,112 |
Shell Programming and Scripting |
|
|
|
2 |
2,917 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
8,424 |
Shell Programming and Scripting |
|
|
|
5 |
10,476 |
Shell Programming and Scripting |
|
|
|
2 |
4,451 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,300 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,469 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,262 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,172 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,479 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,698 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
22,041 |
What is on Your Mind? |
|
|
|
1 |
2,345 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,063 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
8,166 |
What is on Your Mind? |
|
|
|
0 |
22,852 |
What is on Your Mind? |
|
|
|
2 |
1,397 |
Shell Programming and Scripting |
|
|
|
6 |
10,805 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
3,204 |
Shell Programming and Scripting |
|
|
|
1 |
2,632 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
4,176 |
Shell Programming and Scripting |
|
|
|
28 |
14,667 |
What is on Your Mind? |
|
|
|
3 |
1,170 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
1,631 |
Shell Programming and Scripting |
|
|
|
1 |
2,053 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,315 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,266 |
Shell Programming and Scripting |
|
|
|
0 |
6,036 |
Web Development |
|
|
|
12 |
4,123 |
Programming |
|
|
|
4 |
1,134 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,358 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
2,817 |
Shell Programming and Scripting |
|
|
|
5 |
2,455 |
Programming |
|
|
|
9 |
1,638 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
971 |
Shell Programming and Scripting |
|
|
|
3 |
2,432 |
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.11 10 Sep 2004 search.h(3HEAD)