implemented function prototype registration.

This commit is contained in:
Lorenzo Torres 2025-12-05 17:10:56 +01:00
parent 3ca2c2f009
commit c8e88a6a98
3 changed files with 53 additions and 8 deletions

2
sema.h
View file

@ -54,7 +54,7 @@ typedef struct _type {
typedef struct {
char *name;
type *type;
type *parameters
type **parameters;
} prototype;
typedef struct {