skeletton untested project

This commit is contained in:
thrieg 2025-12-11 06:18:16 +01:00
commit 6fc620e8f4
187 changed files with 6584 additions and 0 deletions

View 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