summaryrefslogtreecommitdiffstats
path: root/src/ft_s_lcom.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-20 19:21:23 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-20 19:21:23 +0200
commit0daacec366aab889b2b24d7fc6edebe1370d7e28 (patch)
treeb16cf4d5c03751838896acee6c2d6129f3372b3b /src/ft_s_lcom.c
parentContinuing (diff)
download42-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.c20
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);
}