inserted line thingy
This commit is contained in:
parent
fb3a2d94a0
commit
0e18e20181
9 changed files with 1198 additions and 3 deletions
|
|
@ -6,7 +6,7 @@
|
|||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/11/16 18:10:27 by maiboyer #+# #+# */
|
||||
/* Updated: 2024/02/09 15:06:53 by maiboyer ### ########.fr */
|
||||
/* Updated: 2024/07/05 19:54:25 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -16,6 +16,10 @@
|
|||
# include "me/types.h"
|
||||
# include <stdarg.h>
|
||||
|
||||
# ifndef FS_H
|
||||
typedef struct s_fd t_fd;
|
||||
# endif
|
||||
|
||||
typedef struct s_fprintf_arg
|
||||
{
|
||||
t_usize total_print;
|
||||
|
|
@ -85,4 +89,17 @@ t_usize me_vprintf(t_const_str fmt, va_list *args);
|
|||
/// @return the number of characters printed
|
||||
t_usize me_veprintf(t_const_str fmt, va_list *args);
|
||||
|
||||
|
||||
/// @brief Print a formatted string to the given fd
|
||||
/// @param fmt the format string
|
||||
/// @param ... the arguments to format
|
||||
/// @return the number of characters printed
|
||||
t_usize me_printf_fd(t_fd *, t_const_str fmt, ...);
|
||||
|
||||
/// @brief Print a formatted string to the given fd
|
||||
/// @param fmt the format string
|
||||
/// @param args the arguments to format as a va_list
|
||||
/// @return the number of characters printed
|
||||
t_usize me_vprintf_fd(t_fd *, t_const_str fmt, va_list *args);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue