-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
34 lines (28 loc) · 1.31 KB
/
Copy pathft_printf.h
File metadata and controls
34 lines (28 loc) · 1.31 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
31
32
33
34
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: licohen <licohen@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/31 12:00:07 by licohen #+# #+# */
/* Updated: 2024/06/10 20:15:45 by licohen ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stddef.h>
# include <stdint.h>
# include <stdio.h>
# include <stdlib.h>
# include <unistd.h>
# define INT_MIN (-2147483648)
# define INT_MAX 2147483647
int ft_print_putchar(char c);
int ft_strlen(char *str);
int ft_printf(const char *format, ...);
int ft_printf_putstr(char *str);
int ft_count_signed(int nb);
int ft_count_unsigned(unsigned long nb, char *str);
int ft_p(void *ptr);
#endif