# validator.h ## Include Guard ```c #ifndef VALIDATOR_H # define VALIDATOR_H # include # 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 ```