30 lines
No EOL
1.2 KiB
C
Executable file
30 lines
No EOL
1.2 KiB
C
Executable file
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_printf_bonus.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: thrieg <thrieg@student.42mulhouse.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/10/23 13:04:14 by thrieg #+# #+# */
|
|
/* Updated: 2025/02/16 19:08:01 by thrieg ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FT_PRINTF_BONUS_H
|
|
# define FT_PRINTF_BONUS_H
|
|
|
|
typedef struct s_arglist
|
|
{
|
|
int width_mini;
|
|
int precision;
|
|
int flag_hashtag;
|
|
int flag_zero;
|
|
int flag_justified_left;
|
|
int flag_space;
|
|
int flag_plus;
|
|
int size_of_argument_string;
|
|
} t_arglist;
|
|
|
|
t_arglist *ft_create_arglist(const char *str, va_list *args);
|
|
|
|
#endif |