diff options
Diffstat (limited to '')
-rw-r--r-- | src/ft_p_lcom.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/ft_p_lcom.c b/src/ft_p_lcom.c new file mode 100644 index 0000000..8c3d6d4 --- /dev/null +++ b/src/ft_p_lcom.c @@ -0,0 +1,38 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_p_lcom.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ +/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ +/* */ +/* ************************************************************************** */ + +#include <libft.h> +#include <stdint.h> +#include "ft_s_struct.h" + +int8_t + ft_p_lcom(const char line[], + const int64_t count, + t_msh *msh) +{ + char **words; + int64_t i; + + i = 0; + if (!(words = ft_split(line, ';'))) + return (-1); + while (i < count) + { + if (!(msh->lcom = ft_lcom_new(words[i]))) + { + return (-1); + } + msh->lcom = msh->lcom.next; + i++; + } + return (0); +} |