aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/ethereum/serpent-go/serpent/parser.h
blob: e3632220a95308b371b9c62f0a700bb11ddd51b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef ETHSERP_PARSER
#define ETHSERP_PARSER

#include <stdio.h>
#include <iostream>
#include <vector>
#include <map>
#include "util.h"

// Serpent text -> parse tree
Node parseSerpent(std::string s);

#endif