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

26 lines
375 B
Markdown

# map_internal.h
## Include Guard
```c
#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`](/srcs/map/core.c.md)
Grows the map's capacity when needed.
```c
int8_t
map_grow(t_map *map);
```
## End Guard
```c
#endif
```