diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-03-30 22:26:36 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-03-30 22:26:36 +0200 |
| commit | 901402c99018422c994bdb297e3ba404969c88ea (patch) | |
| tree | 98602c73a00af57fb7efcb36e4e3cbae2c0ce3a8 /src/io/ft_printf | |
| parent | 40ed37c023627726a5c9c6928284e9f042dc0fa4 (diff) | |
| download | libft-901402c99018422c994bdb297e3ba404969c88ea.tar.gz libft-901402c99018422c994bdb297e3ba404969c88ea.tar.bz2 libft-901402c99018422c994bdb297e3ba404969c88ea.zip | |
Added documentation for ht and lst
Diffstat (limited to 'src/io/ft_printf')
| -rw-r--r-- | src/io/ft_printf/internals/list.c | 4 | ||||
| -rw-r--r-- | src/io/ft_printf/internals/parse.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/io/ft_printf/internals/list.c b/src/io/ft_printf/internals/list.c index 99491f4..37f8013 100644 --- a/src/io/ft_printf/internals/list.c +++ b/src/io/ft_printf/internals/list.c @@ -18,7 +18,7 @@ t_flist *list_new(t_pformat *content) if ((lst = (t_flist*)malloc(sizeof(t_flist))) == NULL) return (NULL); - lst->content = content; + lst->data = content; lst->next = NULL; return (lst); } @@ -47,7 +47,7 @@ void list_pop_front(t_flist **lst) if (lst == NULL || *lst == NULL) return ; tmp = (*lst)->next; - free((*lst)->content); + free((*lst)->data); free(*lst); *lst = tmp; } diff --git a/src/io/ft_printf/internals/parse.c b/src/io/ft_printf/internals/parse.c index 33928a0..4650481 100644 --- a/src/io/ft_printf/internals/parse.c +++ b/src/io/ft_printf/internals/parse.c @@ -28,7 +28,7 @@ int parse(const char *format, t_flist **flist) if ((tmp = list_new(parsed)) == NULL) return ((int)list_destroy(flist)); list_push_front(flist, tmp); - format += (*flist)->content->fmt_len; + format += (*flist)->data->fmt_len; } *flist = list_reverse(*flist); return (1); |
