Unix and Linux Discussions Tagged with search |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
7 |
5,196 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,189 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,309 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,363 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
13,706 |
Shell Programming and Scripting |
|
|
|
2 |
2,839 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
8,343 |
Shell Programming and Scripting |
|
|
|
5 |
10,034 |
Shell Programming and Scripting |
|
|
|
2 |
4,266 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,216 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,321 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,999 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,056 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,405 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,608 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
20,177 |
What is on Your Mind? |
|
|
|
1 |
2,251 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,991 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
8,058 |
What is on Your Mind? |
|
|
|
0 |
21,070 |
What is on Your Mind? |
|
|
|
2 |
1,319 |
Shell Programming and Scripting |
|
|
|
6 |
10,505 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
3,152 |
Shell Programming and Scripting |
|
|
|
1 |
2,432 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,967 |
Shell Programming and Scripting |
|
|
|
28 |
14,270 |
What is on Your Mind? |
|
|
|
3 |
1,102 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
1,539 |
Shell Programming and Scripting |
|
|
|
1 |
1,983 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,190 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,167 |
Shell Programming and Scripting |
|
|
|
0 |
5,847 |
Web Development |
|
|
|
12 |
3,820 |
Programming |
|
|
|
4 |
1,072 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,245 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
2,622 |
Shell Programming and Scripting |
|
|
|
5 |
2,360 |
Programming |
|
|
|
9 |
1,473 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
918 |
Shell Programming and Scripting |
|
|
|
3 |
2,127 |
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)