c-md/includes/internal/map_internal.h.md
lohhiiccc 80f7a1b9b6 feat(build): add build instructions in README and convert sources to .c.md format
- Add detailed build and bootstrap instructions to README.md.
 - Convert all source and header files from .c/.h to .c.md/.h.md.
 - Add bootstrap.sh script for automated building across version history.
 - Update Makefile and sources.mk to reflect new markdown-based source organization.
2026-01-12 14:54:49 +01:00

294 B

#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);

int8_t
write_header(FILE *f, const char *source, const char *target);

int8_t
write_ranges(FILE *f, t_map *map);

#endif