Unix and Linux Discussions Tagged with search |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
7 |
24,917 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
5,791 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
12,123 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
5,468 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
20,355 |
Shell Programming and Scripting |
|
|
|
2 |
5,326 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
12,052 |
Shell Programming and Scripting |
|
|
|
5 |
15,825 |
Shell Programming and Scripting |
|
|
|
2 |
10,247 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
4,278 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
6,904 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
8,021 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,159 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,898 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,996 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
26,354 |
What is on Your Mind? |
|
|
|
1 |
4,464 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
5,913 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
9,880 |
What is on Your Mind? |
|
|
|
0 |
26,613 |
What is on Your Mind? |
|
|
|
2 |
3,037 |
Shell Programming and Scripting |
|
|
|
6 |
14,266 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
4,526 |
Shell Programming and Scripting |
|
|
|
1 |
5,034 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
6,057 |
Shell Programming and Scripting |
|
|
|
28 |
22,243 |
What is on Your Mind? |
|
|
|
3 |
2,698 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,203 |
Shell Programming and Scripting |
|
|
|
1 |
3,127 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,198 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,478 |
Shell Programming and Scripting |
|
|
|
0 |
10,954 |
Web Development |
|
|
|
12 |
7,036 |
Programming |
|
|
|
4 |
2,235 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,893 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
6,251 |
Shell Programming and Scripting |
|
|
|
5 |
4,103 |
Programming |
|
|
|
9 |
4,148 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,650 |
Shell Programming and Scripting |
|
|
|
3 |
5,535 |
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)