-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminitalk.h
31 lines (27 loc) · 1.27 KB
/
minitalk.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minitalk.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ofadhel <ofadhel@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/20 10:30:27 by ofadhel #+# #+# */
/* Updated: 2023/04/09 19:39:41 by ofadhel ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_H
# define MINITALK_H
# include <signal.h>
# include <unistd.h>
# include <stdio.h>
# include <stdlib.h>
# include <stdarg.h>
int ft_printf(const char *format, ...);
int ft_putchar(char c);
int ft_putstr(char *str);
int ft_pointer(unsigned long ptr);
int ft_hexlower(unsigned int nb);
int ft_hexupper(unsigned int nb);
int ft_putunbr(unsigned int nb);
int ft_putnbr(int nb);
#endif