der des der
This commit is contained in:
parent
d73f6e1a03
commit
6ee4c3dd87
|
@ -6,7 +6,7 @@
|
||||||
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
||||||
/* +#+#+#+#+#+ +#+ */
|
/* +#+#+#+#+#+ +#+ */
|
||||||
/* Created: 2022/10/05 10:22:16 by erey-bet #+# #+# */
|
/* Created: 2022/10/05 10:22:16 by erey-bet #+# #+# */
|
||||||
/* Updated: 2022/10/17 13:50:20 by erey-bet ### ########.fr */
|
/* Updated: 2022/10/18 17:32:20 by erey-bet ### ########.fr */
|
||||||
/* */
|
/* */
|
||||||
/* ************************************************************************** */
|
/* ************************************************************************** */
|
||||||
|
|
||||||
|
@ -18,7 +18,8 @@ void ft_putnbr_fd(int n, int fd)
|
||||||
long nl;
|
long nl;
|
||||||
|
|
||||||
nl = n;
|
nl = n;
|
||||||
nl *= ABS(nl);
|
if (nl < 0)
|
||||||
|
nl *= -1;
|
||||||
len = ft_get_size(nl);
|
len = ft_get_size(nl);
|
||||||
if (n < 0)
|
if (n < 0)
|
||||||
ft_putchar_fd('-', fd);
|
ft_putchar_fd('-', fd);
|
||||||
|
|
3
libft.h
3
libft.h
|
@ -6,7 +6,7 @@
|
||||||
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
||||||
/* +#+#+#+#+#+ +#+ */
|
/* +#+#+#+#+#+ +#+ */
|
||||||
/* Created: 2022/09/26 16:31:10 by erey-bet #+# #+# */
|
/* Created: 2022/09/26 16:31:10 by erey-bet #+# #+# */
|
||||||
/* Updated: 2022/10/11 22:44:32 by erey-bet ### ########.fr */
|
/* Updated: 2022/10/18 17:32:25 by erey-bet ### ########.fr */
|
||||||
/* */
|
/* */
|
||||||
/* ************************************************************************** */
|
/* ************************************************************************** */
|
||||||
|
|
||||||
|
@ -14,7 +14,6 @@
|
||||||
# define LIBFT_H
|
# define LIBFT_H
|
||||||
# include <stdlib.h>
|
# include <stdlib.h>
|
||||||
# include <unistd.h>
|
# include <unistd.h>
|
||||||
# define ABS(X) (X > 0) - (X < 0)
|
|
||||||
|
|
||||||
typedef struct s_list
|
typedef struct s_list
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue