@@ -0,0 +1,17 @@
#ifndef TYPES_H
#define TYPES_H
#include "type_info.h"
const TypeInfo* get_int_type(void);
const TypeInfo* get_double_type(void);
typedef struct {
double re;
double im;
} Complex;
const TypeInfo* get_complex_type(void);
#endif //TYPES_H
The note is not visible to the blocked user.