- 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.
12 lines
145 B
Markdown
12 lines
145 B
Markdown
```c
|
|
#ifndef VALIDATOR_H
|
|
# define VALIDATOR_H
|
|
|
|
# include <stdint.h>
|
|
# include "cli.h"
|
|
|
|
int8_t
|
|
validator_validate_args(t_args *args);
|
|
|
|
#endif
|
|
```
|