You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
278 B
20 lines
278 B
#ifndef __HASH_VALUE_H__
|
|
#define __HASH_VALUE_H__
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include "class.h"
|
|
|
|
CLASS(HashValue) {
|
|
unsigned long hash;
|
|
|
|
char * key;
|
|
void * value;
|
|
|
|
size_t nkey;
|
|
size_t nvalue;
|
|
};
|
|
|
|
#endif // __HASH_VALUE_H__
|
|
|
|
// vim: set ts=4 sw=4:
|