rishtik/src/parser/parser.h
rick f717909921
Modification biblio fonction get_input
La fonction ne modifie plus le paramètre mais retourne un pointeur vers
la chaine entrée.
2021-02-16 18:25:37 +01:00

18 lines
337 B
C

/**
* @file parser.h
* @author rick <rick@gnous.eu>
* @date 2021
* Bibliothèque pour le shell rishtik
*/
#ifndef _PARSER_H_
# define _PARSER_H_
#define MAX_LENGTH 200 /* taille maximum des tableaux utilisés */
char* get_input();
void parse_char(char *args[], char find);
void tok_space(char *args,char *commands[]);
#endif