-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprintf.h
More file actions
30 lines (26 loc) · 1.26 KB
/
printf.h
File metadata and controls
30 lines (26 loc) · 1.26 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: edforte <edforte@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/29 15:18:10 by edforte #+# #+# */
/* Updated: 2024/02/05 20:05:31 by edforte ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef PRINTF_H
# define PRINTF_H
# include <stdio.h>
# include <unistd.h>
# include <stdlib.h>
# include <stdarg.h>
int ft_printf(const char *format, ...);
int ft_putstr(char *str);
int ft_putchar(char num);
int ft_put_low_hex(unsigned long long int num);
int ft_put_upp_hex(unsigned long long int num);
int ft_putchar(char c);
int ft_put_uns_nbr(unsigned int nb);
int ft_putnbr(int nb);
#endif