-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_printf.h
25 lines (22 loc) · 1.22 KB
/
ft_printf.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: abbouras <abbouras@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/14 17:36:48 by abbouras #+# #+# */
/* Updated: 2024/11/15 15:57:27 by abbouras ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <unistd.h>
# include <stdarg.h>
size_t ft_strlen(const char *s);
int ft_printf(const char *str, ...);
void ft_putchar_fd(char c, int fd, int *ct);
void ft_putstr_fd(char *s, int fd, int *ct);
void ft_putnbr_fd(int n, int fd, int *ct);
void ft_putnbr_base_ul(unsigned long nbr, char *base, int *ct);
#endif