-
Notifications
You must be signed in to change notification settings - Fork 0
/
minitalk.h
25 lines (21 loc) · 1.08 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minitalk.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ialdidi <ialdidi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/20 15:38:31 by ialdidi #+# #+# */
/* Updated: 2024/01/23 09:26:02 by ialdidi ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_H
# define MINITALK_H
# include <signal.h>
# include <unistd.h>
# include <stdlib.h>
void ft_putchar(char c);
void ft_putstr(char *s);
void ft_putnbr(int n);
int ft_atoi(const char *str);
#endif