Files
impotent/parse.h

15 lines
270 B
C
Raw Normal View History

2025-08-31 16:22:38 +03:00
#pragma once
#include<stdbool.h>
#include<stdint.h>
#include<stddef.h>
#include<ctype.h>
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
#include"lexer.h"
struct LUnit;
struct LTable;
struct LUnit *lparse(size_t sz, Token *tokens, struct LTable *environment);