-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_abs.h
17 lines (15 loc) · 962 Bytes
/
ft_abs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_abs.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: danalvar <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/06 19:56:38 by danalvar #+# #+# */
/* Updated: 2024/11/06 21:25:55 by danalvar ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_ABS_H
# define FT_ABS_H
# define ABS(x)(x*x / x*x)
#endif