You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.4 KiB
C
29 lines
1.4 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* funcs.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: hroussea <hroussea@student.42lyon.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2021/03/14 16:19:51 by hroussea #+# #+# */
|
|
/* Updated: 2021/09/22 19:19:13 by hroussea ### ########lyon.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FUNCS_H
|
|
# define FUNCS_H
|
|
|
|
# include "tokenizer.h"
|
|
|
|
void state_newline(t_tokenizer *tknz, t_token *token);
|
|
void state_emptyline(t_tokenizer *tknz, t_token *token);
|
|
void state_path(t_tokenizer *tknz, t_token *token);
|
|
void state_path_escape(t_tokenizer *tknz, t_token *token);
|
|
void state_comma(t_tokenizer *tknz, t_token *token);
|
|
void state_number(t_tokenizer *tknz, t_token *token);
|
|
void state_id(t_tokenizer *tknz, t_token *token);
|
|
void state_id_start(t_tokenizer *tknz, t_token *token);
|
|
void state_error_unreach(t_tokenizer *tknz, t_token *token);
|
|
|
|
#endif
|