-
Notifications
You must be signed in to change notification settings - Fork 0
/
ght_get.3
33 lines (23 loc) · 798 Bytes
/
ght_get.3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.TH ght_get 3 "2005-07-21" "libghthash" "libghthash User Manual"
.SH NAME
ght_get \- lookup an entry in the hash table.
.SH SYNOPSIS
.B #include <ght_hash_table.h>
.BI "void *ght_get(ght_hash_table_t *" p_ht ", unsigned int " i_key_size ", void *" p_key_data ");"
.SH DESCRIPTION
Lookup an entry in the hash table. The entry is not removed from the table.
.I p_ht
is a pointer to the hash table to get from,
.I i_key_size
is the size of the key passed, and
.I p_key_data
is a pointer to the key data.
.SH RETURN VALUE
Returns a pointer to the stored data item or
.B NULL
if the item could not be found.
.SH SEE ALSO
.BR ght_remove (3),
libghthash is fully documented with Doxygen (in {prefix}/doc/libghthash/html/).
.SH AUTHOR
This manual page was created by Simon Kagstrom <ska@bth.se>.