-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_printf.h
31 lines (28 loc) · 1.31 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
26
27
28
29
30
31
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_functions.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ahaifoul <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/20 18:38:16 by ahaifoul #+# #+# */
/* Updated: 2021/11/23 11:35:20 by ahaifoul ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <unistd.h>
# include <stdarg.h>
# include <stdlib.h>
int ft_printf( const char *format, ...);
int ft_putstr(char *str);
int ft_putchar(char c);
int put_unsi_nbr(unsigned long int nb);
int str_len(char *str);
long get_len(long nb);
int base_convert_p(void *x);
int ft_itoa(long n);
int base_convert_x(long n);
int base_convert_up(long n);
int base_convert_hex(long int nb, char c);
#endif