summaryrefslogtreecommitdiff
path: root/21sh/autotools/src/parser/parser.c
blob: 28f582494312e9229e5b924acb90b659978dcc02 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "parser.h"

#include <stdio.h>

#include "lexer/lexer.h"

void print_parser()
{
    print_lexer();
    printf("parser !!!\n");
}