-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminitalk.h
23 lines (19 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minitalk.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rabustam <rabustam@student.42sp.org.br> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/08/29 18:32:56 by rabustam #+# #+# */
/* Updated: 2022/09/22 17:20:35 by rabustam ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MINITALK_H
# define MINITALK_H
# include <signal.h>
# include "libft/libft.h"
int clear_bit(int c, int position);
int set_bit(int c, int position);
char *add_char_to_str(char *message, char c);
#endif