c-md/includes/internal/map_internal.h.md
2026-01-12 17:01:58 +01:00

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