/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* p_split.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #ifndef P_SPLIT_H # define P_SPLIT_H # include # ifdef __linux__ # include # else # include # endif typedef struct s_split_block { size_t pos[ARG_MAX / 2]; char nextif[ARG_MAX / 2]; unsigned int count; } t_split_block; char **p_split_line(char line[]); #endif