3 changed files with 84 additions and 46 deletions
@ -0,0 +1,39 @@ |
|||
#include <stdio.h> |
|||
#include <string.h> |
|||
#include <json/json.h> |
|||
|
|||
#include "../bigpoint_cclass.h" |
|||
#include "../bigpoint_dyntype.h" |
|||
#include "../bigpoint_hash.h" |
|||
|
|||
|
|||
#define TEST_KEY1 "key1" |
|||
#define TEST_KEY2 "key2" |
|||
|
|||
|
|||
int |
|||
main(int argc, char * argv[]) |
|||
{ |
|||
struct BIGPOINT_DYNTYPE * dyn; |
|||
struct BIGPOINT_HASH * hash = new(BIGPOINT_HASH); |
|||
|
|||
dyn = new(BIGPOINT_DYNTYPE, BIGPOINT_DYNTYPE_INT, sizeof(int), 123); |
|||
bigpoint_hash_set(hash, TEST_KEY1, dyn); |
|||
|
|||
dyn = new(BIGPOINT_DYNTYPE, BIGPOINT_DYNTYPE_INT, sizeof(int), 321); |
|||
bigpoint_hash_set(hash, TEST_KEY2, dyn); |
|||
|
|||
dyn = bigpoint_hash_get(hash, TEST_KEY1); |
|||
printf("%d\n", (dyn->data)._int); |
|||
delete(dyn); |
|||
|
|||
dyn = bigpoint_hash_get(hash, TEST_KEY2); |
|||
printf("%d\n", (dyn->data)._int); |
|||
delete(dyn); |
|||
|
|||
delete(hash); |
|||
|
|||
return 0; |
|||
} |
|||
|
|||
// vim: set et ts=4 sw=4: |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue