42sh/src/parser/parser.c

14 lines
146 B
C
Raw Normal View History

#include "parser.h"
#include <stddef.h>
struct ast *get_ast()
{
return NULL;
}
struct ast *get_ast_str(char *command)
{
return NULL;
}