copy on git
This commit is contained in:
commit
42653de246
205 changed files with 7459 additions and 0 deletions
30
libft/ft_printf/ft_printf_bonus.h
Executable file
30
libft/ft_printf/ft_printf_bonus.h
Executable file
|
|
@ -0,0 +1,30 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue