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

23 lines
308 B
Markdown

# transpile.h
## Include Guard
```c
#ifndef TRANSPILE_H
# define TRANSPILE_H
# include <stdint.h>
# include <stdio.h>
# include "map.h"
```
## Functions
### [`transpile`](/srcs/transpile/core.c.md)
```c
int8_t
transpile(FILE *in, FILE *out, const char *ext, t_map *map);
```
## End Guard
```c
#endif
```