#ifndef __COMPLEX_H #define __COMPLEX_H struct complex { double re; double im; void complex_initialize(double re, double im); struct complex complex_conjugate(); }; #endif // __COMPLEX_H