- 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.
14 lines
196 B
Markdown
14 lines
196 B
Markdown
```c
|
|
#include <stdio.h>
|
|
|
|
#include "internal/transpile_internal.h"
|
|
|
|
int8_t
|
|
handle_code_line(t_state *s, char *line)
|
|
{
|
|
if (0 > fputs(line, s->out))
|
|
return (1);
|
|
s->dst_line++;
|
|
return (0);
|
|
}
|
|
```
|