-
Notifications
You must be signed in to change notification settings - Fork 0
/
minitalk.h
27 lines (23 loc) · 1.17 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minitalk.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: bschwitz <marvin@42lausanne.ch> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/15 15:38:55 by bschwitz #+# #+# */
/* Updated: 2022/02/16 16:50:10 by bschwitz ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_H
# define MINITALK_H
# include <stdlib.h>
# include <unistd.h>
# include <signal.h>
# include <stddef.h>
void ft_putchar_fd(char c, int fd);
int ft_isdigit(int c);
int ft_atoi(const char *str);
void *ft_memset(void *b, int c, size_t len);
void ft_putnbr_fd(int c, int fd);
#endif