- 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.
21 lines
242 B
Markdown
21 lines
242 B
Markdown
```c
|
|
#ifndef IO_H
|
|
# define IO_H
|
|
|
|
# include <stdio.h>
|
|
# include <stdint.h>
|
|
|
|
typedef struct s_io
|
|
{
|
|
FILE *in;
|
|
FILE *out;
|
|
} t_io;
|
|
|
|
int8_t
|
|
io_open(t_io *io, const char *input_path, const char *output_path);
|
|
|
|
void
|
|
io_close(t_io *io);
|
|
|
|
#endif
|
|
```
|