aboutsummaryrefslogtreecommitdiff
path: root/collections/map/map.c
blob: 21af21c90bb36161c3d9182d885b7d22ef653f75 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "map.h"

#include <string.h>
#include <stdio.h>

struct map_node {
	void *key, *val;
	cmp_func cmp;

	struct map_node *left, *right, *parent;
};