-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_itoa.c
51 lines (46 loc) · 1.4 KB
/
ft_itoa.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_itoa.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jecarol <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/12/07 12:24:32 by jecarol #+# #+# */
/* Updated: 2016/12/07 15:08:12 by jecarol ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
static int ft_how_long(int n)
{
int i;
i = 0;
while (n /= 10)
i++;
return (i);
}
char *ft_itoa(int n)
{
char *cnvrt;
int len;
int is_neg;
is_neg = 0;
if (n == -2147483648)
return (ft_strdup("-2147483648"));
if (n < 0)
{
is_neg = 1;
n = -n;
}
len = ft_how_long(n) + is_neg + 2;
if ((cnvrt = (char*)malloc(sizeof(char) * len)) == NULL)
return (NULL);
cnvrt[--len] = '\0';
while (len--)
{
cnvrt[len] = n % 10 + 48;
n = n / 10;
}
if (is_neg == 1)
cnvrt[0] = '-';
return (cnvrt);
}