//--------------------------- //Header file of Polfract.cpp //--------------------------- // Example of polynomial fraction: x2 +4x -5 / x2 -1 typedef struct { ar_polynom numer; // numerator polynomial ar_polynom denom; // denominator polynomial } ar_fraction; bool EnterPolFract(char *, ar_fraction *); void DisplayPolFract(ar_fraction *); //end of file polfract.h