Implement datatype structures in order to reduce number of variables to give as input/output to functions. The syntax should be:
`
typedef struct {
type1 var1;
type2 var2;
...
} DataTypeName_t;
`
The definitions of the datatype should be inserted into the .h corresponding files.