Server 0.0.1
HTTP/REST server implementation

include/hash/value.h

Go to the documentation of this file.
00001 
00023 #ifndef __HASH_VALUE_H__
00024 #define __HASH_VALUE_H__
00025 
00026 #include <sys/types.h>
00027 
00028 #include "class.h"
00029 
00030 CLASS(HashValue) {
00031         unsigned long hash;
00032 
00033         char *        key;
00034         void *        value;
00035 
00036         size_t        nkey;
00037         size_t        nvalue;
00038 };
00039 
00040 #endif // __HASH_VALUE_H__
00041 
00042 // vim: set ts=4 sw=4:
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines