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