Im using C. I have two header files (H1 & H2) with two different structs(S1 & S2) respectively. I am trying to define a function in H1 that takes S1 & S2 as its parameters. I do not have the flexibility to move around the structs between the header files.
function(S1,S2);
But how can I declare S2 as the second parameter of this function as it is in H2 not H1?