42sh/src/parser/parser.c

15 lines
165 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)
{
2026-01-10 19:57:36 +01:00
(void)command;
return NULL;
}