#ifndef INCLUDE_COMPLEX_H #define INCLUDE_COMPLEX_H struct complex_t { int x; int y; }; int addcomplex(struct complex_t *result, struct complex_t *a, struct complex_t *b); int mulcomplex(struct complex_t *result, struct complex_t *a, struct complex_t *b); #endif