-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminitalk.h
More file actions
26 lines (22 loc) · 1.12 KB
/
minitalk.h
File metadata and controls
26 lines (22 loc) · 1.12 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minitalk.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sfathima <sfathima@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/08 10:15:31 by sfathima #+# #+# */
/* Updated: 2021/12/27 11:13:24 by sfathima ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_H
# define MINITALK_H
# include <stdarg.h>
# include <unistd.h>
# include <signal.h>
# include <stdlib.h>
int ft_printf(char *arg, ...);
int ft_char(char c, int ct);
int ft_int(long n, int ct);
int ft_atoi(const char *str);
#endif