rishtik/src/boitoutil/parser.h

18 lines
376 B
C
Raw Permalink Normal View History

2021-02-16 16:26:48 +00:00
/**
2021-02-17 14:05:38 +00:00
* Header pour la bibliothèque servant à parser et récupérer lentrée
* utilisateur.
2021-02-16 16:26:48 +00:00
* @file parser.h
* @author rick <rick@gnous.eu>
* @date 2021
* Bibliothèque pour le shell rishtik
*/
#ifndef _PARSER_H_
# define _PARSER_H_
char* get_input();
int get_command(char *args[], char find);
2021-02-17 09:51:41 +00:00
void parse_string(char *args,char *commands[], char find);
2021-02-16 16:26:48 +00:00
#endif