mirror of
https://github.com/zoriya/ash.git
synced 2026-06-02 18:50:43 +00:00
adding parser.h and starting parse_input
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
** EPITECH PROJECT, 2020
|
||||
** PSU_minishell2_2019
|
||||
** File description:
|
||||
** redirections
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "shell.h"
|
||||
|
||||
typedef struct parser_map {
|
||||
char *key;
|
||||
int (*parser)(char *, char **);
|
||||
} parser_map;
|
||||
|
||||
int parse_quotes(char *ptr, char **data);
|
||||
Reference in New Issue
Block a user