mirror of
https://github.com/zoriya/ash.git
synced 2026-05-13 19:42:58 +00:00
18 lines
291 B
C
18 lines
291 B
C
/*
|
|
** 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;
|
|
|
|
char **parse_input(char *cmd);
|
|
int parse_quotes(char *ptr, char **data); |