Content-type: text/html
Manpage of hashlib
hashlib
Section: C Library Functions (3)
Updated: 23 August 1999
Index
Return to Main Contents
NAME
create_hash_table,
destroy_hash_table,
get_hashed_objects,
get_hashed_object,
put_hashed_object,
delete_hash_object,
hashstat
SYNOPSIS
hash_table_type *create_hash_table
(
int size,
char *name
);
hash_table_type *destroy_hash_table(hash_table_type *hash_table);
void **get_hashed_objects
(
int index,
hash_table_type *hash_table
);
void *get_hashed_object
(
int index,
void *object,
hash_table_type *hash_table
);
int put_hashed_object
(
int index,
void *object,
hash_table_type *hash_table
);
int delete_hash_object
(
int index,
void *object,
hash_table_type *hash_table
);
int hashstat
(
FILE *stream,
hash_table_type *hash_table
);
PARAMETERS
- int size
-
Not Documented.
- char *name
-
Not Documented.
- hash_table_type *hash_table
-
Not Documented.
- int index
-
Not Documented.
- void *object
-
Not Documented.
- FILE *stream
-
Not Documented.
DESCRIPTION
create_hash_table
Create a hash table object ...
destroy_hash_table
Destroy a hash table object ...
get_hashed_objects
Return all objects at a given location ...
get_hashed_object
Return object at a given location ...
put_hashed_object
Put object in hash table ...
delete_hash_object
Routine to delete object from hash table ...
hashstat
Return current hash statistics ...
Index
- NAME
-
- SYNOPSIS
-
- PARAMETERS
-
- DESCRIPTION
-
- create_hash_table
-
- destroy_hash_table
-
- get_hashed_objects
-
- get_hashed_object
-
- put_hashed_object
-
- delete_hash_object
-
- hashstat
-
This document was created by
man2html,
using the manual pages.
Time: 16:36:10 GMT, January 10, 2008