diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-29 18:48:30 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-29 18:48:30 +0200 |
commit | 54fbc9de08962e966eacf8e7b0caaa4689d1aa78 (patch) | |
tree | 783f77a09ef5c81008f1b743580760065bc20169 /libft | |
parent | Good? (diff) | |
download | 42-minishell-54fbc9de08962e966eacf8e7b0caaa4689d1aa78.tar.gz 42-minishell-54fbc9de08962e966eacf8e7b0caaa4689d1aa78.tar.bz2 42-minishell-54fbc9de08962e966eacf8e7b0caaa4689d1aa78.tar.xz 42-minishell-54fbc9de08962e966eacf8e7b0caaa4689d1aa78.tar.zst 42-minishell-54fbc9de08962e966eacf8e7b0caaa4689d1aa78.zip |
Order update
Diffstat (limited to '')
-rw-r--r-- | libft/include/libft.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libft/include/libft.h b/libft/include/libft.h index cd046e2..c0910b1 100644 --- a/libft/include/libft.h +++ b/libft/include/libft.h @@ -38,31 +38,31 @@ typedef struct s_list typedef struct s_gnl { - int fd; char *rest; + int fd; struct s_gnl *next; } t_gnl; typedef struct s_printflist { - int putlen; - char conv; - char actconv; char *fullflag; + char *output; size_t flaglen; + int putlen; int width; int precision; + int fulllen; uint8_t isreverse; uint8_t isneg; uint8_t isaz; - int8_t isaspace; - uint8_t isaplus; - int8_t lh; uint8_t zflag; uint8_t issharp; uint8_t isminus; - int fulllen; - char *output; + int8_t isaspace; + uint8_t isaplus; + int8_t lh; + char conv; + char actconv; } t_printflist; typedef struct s_stok |