1 2 3 4 5 6 7
typedef struct { int key; void *value; } Tuple; Tuple *tuple_initialize(int key, void *value); void tuple_destroy(Tuple *tuple);