Add files via upload

This commit is contained in:
StarFinger
2026-02-22 16:50:46 +03:00
committed by GitHub
commit 9f9f22f22c
8 changed files with 1349 additions and 0 deletions

17
types.h Normal file
View File

@@ -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