diff options
Diffstat (limited to 'libft')
-rw-r--r-- | libft/include/libft.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/libft/include/libft.h b/libft/include/libft.h index 7f71a18..def0a31 100644 --- a/libft/include/libft.h +++ b/libft/include/libft.h @@ -51,14 +51,14 @@ typedef struct s_printflist int width; int precision; int fulllen; - unsigned char isreverse; - unsigned char isneg; - unsigned char isaz; - unsigned char zflag; - unsigned char issharp; - unsigned char isminus; + unsigned char isreverse; + unsigned char isneg; + unsigned char isaz; + unsigned char zflag; + unsigned char issharp; + unsigned char isminus; char isaspace; - unsigned char isaplus; + unsigned char isaplus; char lh; char conv; char actconv; @@ -68,8 +68,8 @@ typedef struct s_stok { char *spanp; char *ns; - int c; - int sc; + int c; + int sc; } t_stok; /* @@ -135,10 +135,10 @@ char **ft_split(const char *s, char c); ** INT */ -unsigned char ft_intlen(long n); -unsigned char ft_intlen_base(long n, char *base); -unsigned char ft_uintlen(unsigned long n); -unsigned char ft_uintlen_base(unsigned long n, char *base); +unsigned char ft_intlen(long n); +unsigned char ft_intlen_base(long n, char *base); +unsigned char ft_uintlen(unsigned long n); +unsigned char ft_uintlen_base(unsigned long n, char *base); int ft_memcmp(const void *s1, const void *s2, size_t n); t_bool ft_isspace(int c); t_bool ft_iswhitespace(int c); @@ -222,7 +222,7 @@ char *ft_printf_get_flags(const char *format, char *ft_printf_flag_to_atoi(char *str); char *ft_printf_get_width_nstr(char *str, t_printflist *pflist); -unsigned char ft_printf_is_multiwrite(const char *format); +unsigned char ft_printf_is_multiwrite(const char *format); int ft_printf_flags(const char *format, int pos, va_list arg, |