23 lines
359 B
Markdown
23 lines
359 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)
|
|
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
|
|
```
|