diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-20 19:21:23 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-20 19:21:23 +0200 |
commit | 0daacec366aab889b2b24d7fc6edebe1370d7e28 (patch) | |
tree | b16cf4d5c03751838896acee6c2d6129f3372b3b /src/ft_s_lcom.c | |
parent | Continuing (diff) | |
download | 42-minishell-0daacec366aab889b2b24d7fc6edebe1370d7e28.tar.gz 42-minishell-0daacec366aab889b2b24d7fc6edebe1370d7e28.tar.bz2 42-minishell-0daacec366aab889b2b24d7fc6edebe1370d7e28.tar.xz 42-minishell-0daacec366aab889b2b24d7fc6edebe1370d7e28.tar.zst 42-minishell-0daacec366aab889b2b24d7fc6edebe1370d7e28.zip |
Linked list not working but ok
Diffstat (limited to 'src/ft_s_lcom.c')
-rw-r--r-- | src/ft_s_lcom.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/ft_s_lcom.c b/src/ft_s_lcom.c index 19e503b..737c6eb 100644 --- a/src/ft_s_lcom.c +++ b/src/ft_s_lcom.c @@ -17,19 +17,19 @@ t_lcom *ft_lcom_new(const char word[]) { - t_lcom nlcom; - char **words + t_lcom *nlcom; + char **words; - /* if (!(nlcom = (t_lcom*)malloc(sizeof(t_lcom)))) */ - /* { */ - /* return (NULL); */ - /* } */ + if (!(nlcom = (t_lcom*)malloc(sizeof(t_lcom)))) + { + return (NULL); + } if (!(words = ft_split(word, ' '))) { return (NULL); } - nlcom.com = words[0]; - nlcom.args = words + 1; - nlcom.next = NULL; - return (&nlcom); + nlcom->com = words[0]; + nlcom->args = words + 1; + nlcom->next = NULL; + return (nlcom); } |