-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminitalk.h
26 lines (22 loc) · 1.11 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: ogenc <ogenc@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/07 18:32:28 by ogenc #+# #+# */
/* Updated: 2023/03/07 18:32:52 by ogenc ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_H
# define MINITALK_H
# include<stdlib.h>
# include<unistd.h>
# include<signal.h>
char *itoa_pid(int nb);
int ft_strlen(char *str);
void ft_putnbr(int nb);
int ft_atoi(char *str);
char *convertbinary(unsigned char a);
#endif