Unix and Linux Discussions Tagged with search |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
7 |
5,147 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,180 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,284 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,347 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
13,628 |
Shell Programming and Scripting |
|
|
|
2 |
2,832 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
8,331 |
Shell Programming and Scripting |
|
|
|
5 |
9,972 |
Shell Programming and Scripting |
|
|
|
2 |
4,253 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,208 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,304 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,987 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,053 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,398 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,595 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
19,780 |
What is on Your Mind? |
|
|
|
1 |
2,239 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,974 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
8,052 |
What is on Your Mind? |
|
|
|
0 |
20,673 |
What is on Your Mind? |
|
|
|
2 |
1,305 |
Shell Programming and Scripting |
|
|
|
6 |
10,477 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
3,143 |
Shell Programming and Scripting |
|
|
|
1 |
2,425 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,948 |
Shell Programming and Scripting |
|
|
|
28 |
14,213 |
What is on Your Mind? |
|
|
|
3 |
1,094 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
1,529 |
Shell Programming and Scripting |
|
|
|
1 |
1,973 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,175 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,157 |
Shell Programming and Scripting |
|
|
|
0 |
5,807 |
Web Development |
|
|
|
12 |
3,796 |
Programming |
|
|
|
4 |
1,062 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,235 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
2,591 |
Shell Programming and Scripting |
|
|
|
5 |
2,337 |
Programming |
|
|
|
9 |
1,455 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
906 |
Shell Programming and Scripting |
|
|
|
3 |
2,088 |
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)