-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
30 lines (25 loc) · 1.23 KB
/
ft_printf.h
File metadata and controls
30 lines (25 loc) · 1.23 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
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: algungor <algungor@student.42istanbul.com.t+#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/02/15 02:16:19 by algungor #+# #+# */
/* Updated: 2026/03/13 22:12:48 by algungor ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <unistd.h>
int ft_printf(const char *format, ...);
int ft_x_control(unsigned long i, char c);
int ft_p_control(void *p, char c);
int ft_find(char c, va_list *ac);
int ft_putstr(char *s);
int ft_putchar(char c);
int ft_putnbr(int n);
int ft_unnbr(unsigned int n);
int ft_putchar(char c);
#endif