cinc/parser.h

18 lines
255 B
C
Raw Normal View History

2018-09-09 12:41:21 -05:00
//
// parser.h
// cinc
//
// Created by Peter Terpstra on 9/9/18.
// Copyright © 2018 Peter Terpstra. All rights reserved.
//
#ifndef parser_h
#define parser_h
2018-09-09 17:31:02 -05:00
#include "token.h"
#include "ast.h"
AstNode* parse(Token* prg);
2018-09-09 12:41:21 -05:00
#endif /* parser_h */