custom.h 160 B

1234567891011121314151617181920
  1. #ifndef _CUSTOM_H_
  2. #ifdef __cplusplus
  3. extern "C"
  4. {
  5. #endif
  6. typedef struct {
  7. float re;
  8. float im;
  9. } complex;
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif