- 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.
13 lines
187 B
Markdown
13 lines
187 B
Markdown
```c
|
|
#ifndef TRANSPILE_H
|
|
# define TRANSPILE_H
|
|
|
|
# include <stdint.h>
|
|
# include <stdio.h>
|
|
# include "map.h"
|
|
|
|
int8_t
|
|
transpile(FILE *in, FILE *out, const char *ext, t_map *map);
|
|
|
|
#endif
|
|
```
|