-
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: adores <adores@student.42lisboa.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/04/24 11:10:24 by adores #+# #+# */
/* Updated: 2025/05/05 14:50:37 by adores ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <stdio.h>
# include <stdlib.h>
# include <unistd.h>
int ft_printchar(char c);
int ft_printnbr(long nb);
int ft_unsputnbr(unsigned int n);
int ft_hexaputnbr(unsigned int i, unsigned char c);
int ft_printf(const char *format, ...);
int ft_printstr(char *s);
int ft_checkp(void *nb);
#endif