summaryrefslogtreecommitdiffstats
path: root/parser.h
blob: 3d704c3bc3ac7e9e8b63a0e48805bed75861bafa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __PARSER_H
#define __PARSER_H

#include <stdio.h>
#include <stdlib.h>

#include "types.h"

#define LINE_SIZE 4096

recipe *
parse(char * path, const char * prev);

#endif /* __PARSER_H */