// proto.h // Multiple file demonstration, prototypes file // #ifndef PROTO_H #define PROTO_H #include "struct.h" int mult_fun1(int, int); PEPPERMINT mult_fun2(int); void print_struct(PEPPERMINT); #endif