#ifndef __PARSER_H #define __PARSER_H #include "types.h" #define LINE_SIZE 4096 /** * Return a recipe struct after parsing file in path. * * Path can be relative or full, ~ will be resolved as $HOME, and - will accept * input from stdin */ recipe * parse(char * path, const char * prev); #endif /* __PARSER_H */