c-md/includes/transpile.h.md

23 lines
318 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#transpile)
```c
int8_t
transpile(FILE *in, FILE *out, const char *ext, t_map *map);
```
## End Guard
```c
#endif
```