20 lines
993 B
C
20 lines
993 B
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* parser.h :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: kjimenez <marvin@42.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2022/07/24 14:45:05 by kjimenez #+# #+# */
|
||
|
/* Updated: 2022/07/24 14:45:08 by kjimenez ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#ifndef PARSER_H
|
||
|
# define PARSER_H
|
||
|
|
||
|
int check_input(char *str);
|
||
|
int **str_to_tab(char *str);
|
||
|
|
||
|
#endif
|