Files
dynamic-array/types.h
2026-02-22 16:50:46 +03:00

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