-
Notifications
You must be signed in to change notification settings - Fork 0
/
bit.h
20 lines (17 loc) · 1.03 KB
/
bit.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* bit.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: scambier <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/06 03:22:12 by scambier #+# #+# */
/* Updated: 2024/03/06 03:30:21 by scambier ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef BIT_H
# define BIT_H
unsigned int ft_bit_get(int *src, int b);
void ft_bit_set(int *src, int b, int v);
void ft_bit_invert(int *src, int b);
#endif