c-md/includes/validator.h.md
2026-01-12 17:01:58 +01:00

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
```