aboutsummaryrefslogtreecommitdiff
path: root/collections/map/map.h
blob: a760b4508aa94567e38f72511e942a979ef46234 (plain)
1
2
3
4
5
6
7
#ifndef MAP_H
#define MAP_H

typedef struct map_node map;
typedef int (*cmp_func)(void*, void*);

#endif