23 lines
308 B
Markdown
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
|
|
```
|