#ifndef FUNCTIONS_H #define FUNCTIONS_H #include "typedefs.h" #include "enums.h" #include "structs.h" #include "vars.h" void func_void_void(); int func_int_void(); void func_void_int(int); int func_int_int(int); // struct struct _PS func__PS_V(); // enum enum _E func__E_V(); // typedef T_P func_TP_V(); void func_V_TP(T_P); T_P func_TP_TP(T_P); APS func_APS_V(); void func_V_APS(APS); APS func_APS_APS(APS); TPS func_TPS_V(); void func_V_TPS(TPS); TPS func_TPS_TPS(TPS); #endif //FUNCTIONS_H