375 B
375 B
map_internal.h
Include Guard
#ifndef MAP_INTERNAL_H
# define MAP_INTERNAL_H
# include <stdio.h>
# include <stdint.h>
# include "map.h"
# define MAP_INIT_CAP 16 // Default initial capacity for the map
Functions
map_grow
Grows the map's capacity when needed.
int8_t
map_grow(t_map *map);
End Guard
#endif