/* This is complex.h */

struct complex {
  double x, y;
};

void read(struct complex *z);
void write(struct complex *z);

void conjugate(struct complex *z);
/* end of complex.h */

