Minishell
Loading...
Searching...
No Matches
input_processing.h
Go to the documentation of this file.
1/*
2** EPITECH PROJECT, 2025
3** B-PSU-200-BAR-2-1-42sh
4** File description:
5** Process user input
6*/
7#ifndef INPUT_PROCESSING_H
8 #define INPUT_PROCESSING_H
9void enable_raw_mode(void);
10void disable_raw_mode(void);
11void add_char(int *index, char *command, char c);
12void while_ask_command(int *index);
13#endif //INPUT_PROCESSING_H
void while_ask_command(int *index)
Definition input_processing.c:110
void disable_raw_mode(void)
Definition input_processing.c:88
void enable_raw_mode(void)
Definition input_processing.c:75
void add_char(int *index, char *command, char c)
Definition input_processing.c:55
char command[PATH_MAX]
Definition run_command.c:22