rishtik/src/boitoutil/parser.h
rick 4018bd6b4c
Écriture de la fonction native pour exit, close #1
Ajout doc & suppression fonction inutile dans parser.
2021-02-23 18:23:36 +01:00

18 lines
376 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Header pour la bibliothèque servant à parser et récupérer lentrée
* utilisateur.
* @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);
void parse_string(char *args,char *commands[], char find);
#endif