Unix and Linux Discussions Tagged with search |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
7 |
25,404 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
5,943 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
12,326 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
5,592 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
20,412 |
Shell Programming and Scripting |
|
|
|
2 |
5,441 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
12,070 |
Shell Programming and Scripting |
|
|
|
5 |
15,850 |
Shell Programming and Scripting |
|
|
|
2 |
10,451 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
4,385 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
7,050 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
8,201 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,290 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,022 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,122 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
26,547 |
What is on Your Mind? |
|
|
|
1 |
4,578 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
6,060 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
9,996 |
What is on Your Mind? |
|
|
|
0 |
26,784 |
What is on Your Mind? |
|
|
|
2 |
3,041 |
Shell Programming and Scripting |
|
|
|
6 |
14,391 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
4,535 |
Shell Programming and Scripting |
|
|
|
1 |
5,194 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
6,096 |
Shell Programming and Scripting |
|
|
|
28 |
22,631 |
What is on Your Mind? |
|
|
|
3 |
2,809 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,224 |
Shell Programming and Scripting |
|
|
|
1 |
3,210 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,300 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,487 |
Shell Programming and Scripting |
|
|
|
0 |
11,158 |
Web Development |
|
|
|
12 |
7,220 |
Programming |
|
|
|
4 |
2,311 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,973 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
6,286 |
Shell Programming and Scripting |
|
|
|
5 |
4,198 |
Programming |
|
|
|
9 |
4,280 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,661 |
Shell Programming and Scripting |
|
|
|
3 |
5,679 |
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)