summaryrefslogtreecommitdiffstats
path: root/libft/include
diff options
context:
space:
mode:
Diffstat (limited to 'libft/include')
-rw-r--r--libft/include/libft.h18
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