-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminitalk.h
26 lines (22 loc) · 1.12 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minitalk.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: wboutzou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/04/14 20:49:16 by wboutzou #+# #+# */
/* Updated: 2022/04/15 03:44:49 by wboutzou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_H
# define MINITALK_H
# include <stdarg.h>
# include <unistd.h>
# include <signal.h>
int ft_putchar(char c);
int ft_strlen(const char *str);
int ft_putnbr(int a);
int ft_check(char c, va_list args);
int ft_atoi(const char *nptr);
#endif