maxishell
Implementation of a shell for Linux-like systems
Loading...
Searching...
No Matches
Functions
ft_abs.c File Reference
#include "
libft.h
"
Include dependency graph for ft_abs.c:
Go to the source code of this file.
Functions
int
ft_abs
(int n)
Function Documentation
◆
ft_abs()
int ft_abs
(
int
n
)
Definition at line
15
of file
ft_abs.c
.
16
{
17
if
(n < 0)
18
return
(-n);
19
return
(n);
20
}
lib
libft
src
ft_abs.c
Generated by
1.9.8