42_minishell/libftx/printf/ft_printf.h

44 lines
1.8 KiB
C
Raw Normal View History

2023-01-31 08:40:15 -05:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/09/26 14:47:54 by cchauvet #+# #+# */
2023-02-21 07:28:45 -05:00
/* Updated: 2023/02/21 13:27:51 by cchauvet ### ########.fr */
2023-01-31 08:40:15 -05:00
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <unistd.h>
# include <stdarg.h>
size_t ft_strlen(const char *s);
char *ft_strchr(const char *s, int c);
int ft_isdigit(int c);
int ft_skipflag(const char *str);
int ft_isarg(int c);
int ft_dprintptr(int fd, void *ptr);
int ft_dprintl_base(int fd, long long n, char *base);
int ft_dprintul_base(int fd, unsigned long long n, char *base);
int ft_dprintul(int fd, unsigned long long n);
int ft_dprintx(int fd, unsigned int n);
int ft_dprint_upperx(int fd, unsigned int n);
int ft_dprintflag(int fd, const char *flag, va_list va);
int ft_dprintarg(int fd, int c, va_list va);
int ft_dprintstrtab(int fd, char **tab);
int ft_printf(const char *format, ...);
2023-02-21 07:28:45 -05:00
int ft_dprintf(int fd, const char *format, ...);
2023-02-01 11:28:38 -05:00
int ft_eprintf(const char *format, ...);
2023-01-31 08:40:15 -05:00
int ft_vdprintf(int fd, const char *format, va_list va);
2023-02-17 10:33:52 -05:00
int ft_putchar_fd_p(int fd, char c);
2023-02-03 10:02:52 -05:00
int ft_putstr_fd_p(int fd, char *str);
2023-01-31 08:40:15 -05:00
#endif