5#ifndef MYSHELL_MSH_PARSER_H
6#define MYSHELL_MSH_PARSER_H
8#include "types/msh_command.h"
14tokens_t
lexer(
const std::string &input);
command parse_input(std::string input)
Parse the input string to prepare it for command execution.
Definition msh_parser.cpp:308
tokens_t lexer(const std::string &input)
Perform lexical analysis on the given input string, breaking it down into a vector of tokens.
Definition msh_parser.cpp:30
Token structure and related types.
Top-level command structure.
Definition msh_command.h:48