-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
28 lines (24 loc) · 1.2 KB
/
ft_printf.h
File metadata and controls
28 lines (24 loc) · 1.2 KB
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
26
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: thlibers <thlibers@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/10/27 16:30:58 by thlibers #+# #+# */
/* Updated: 2025/10/27 16:35:09 by thlibers ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdio.h>
# include <unistd.h>
# include <stdarg.h>
int ft_printf(const char *format, ...);
size_t ft_putchar(char c);
size_t ft_putstr(char *s);
size_t ft_putptr(void *p);
size_t ft_putnbr(long n);
size_t ft_putunbr(unsigned long n);
size_t ft_puthex(unsigned long h, int b);
#endif