/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* dictparse.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tischmid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/04/01 21:48:18 by tischmid #+# #+# */ /* Updated: 2023/04/02 17:36:47 by tischmid ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef DICTPARSE_H # define DICTPARSE_H # define MAX_LINE_LENGTH 1000 # include "ft_linked_list.h" int parse_line(char *line, char *key, char *value); int parse_dict(char *path, t_map_entry *map); #endif