15 lines
180 B
Markdown
15 lines
180 B
Markdown
```c
|
|
#ifndef MAP_INTERNAL_H
|
|
# define MAP_INTERNAL_H
|
|
|
|
# include <stdio.h>
|
|
# include <stdint.h>
|
|
# include "map.h"
|
|
|
|
# define MAP_INIT_CAP 16
|
|
|
|
int8_t
|
|
map_grow(t_map *map);
|
|
|
|
#endif
|
|
```
|