/* * complex.h * * Prototypes for the complex arithmetic abstract data type in complex.c */ float get_real_part (float[], int); float get_imag_part (float[], int); void set_real_part (float[], int, float); void set_imag_part (float[], int, float); float magnitude (float[], int); float scalar_mult (float[], int);