c-md/includes/validator.h.md

23 lines
383 B
Markdown

# validator.h
## Include Guard
```c
#ifndef VALIDATOR_H
# define VALIDATOR_H
# include <stdint.h>
# include "cli.h"
```
## Functions
### [`validator_validate_args`](/srcs/validator/validator.c.md#validator_validate_args)
This function checks and validates the content of the `t_args` structure,
```c
int8_t
validator_validate_args(t_args *args);
```
## End Guard
```c
#endif
```