tomo/parse.h

13 lines
216 B
C
Raw Normal View History

2024-02-04 12:23:59 -08:00
#pragma once
2024-03-18 09:49:38 -07:00
// Parsing logic
2024-02-04 12:23:59 -08:00
#include <setjmp.h>
#include "ast.h"
type_ast_t *parse_type_str(const char *str);
ast_t *parse_file(const char *path, jmp_buf *on_err);
2024-03-18 09:49:38 -07:00
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0