18 lines
251 B
C
18 lines
251 B
C
#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
|