aboutsummaryrefslogtreecommitdiff
path: root/parse.h
blob: 94d6fa87210fca36f67b264992d3c0d17d5622ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef PARSER_H
#define PARSER_H

struct atom;
struct list;

int parse_next(const char *src, int *pos, struct atom **result);
struct list *parse(const char *src, int *pos);

void print_list(struct list *list, int level);

#endif