-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_itoa.c
55 lines (50 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
52
53
54
55
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_itoa.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hykang <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/01/25 16:04:05 by hykang #+# #+# */
/* Updated: 2022/01/25 17:31:27 by hykang ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int get_int_len(long long n)
{
int len;
if (n == 0 || n == -0)
return (1);
len = 0;
if (n < 0)
len = 1;
while (n)
{
n /= 10;
len++;
}
return (len);
}
char *ft_itoa(int n)
{
int len;
long long nbr;
char *res;
len = get_int_len(n);
nbr = (long long)n;
if (n < 0)
nbr *= -1;
res = (char *)malloc(sizeof(char) * (len + 1));
if (!res)
return (NULL);
res[len--] = '\0';
while (len >= 0)
{
res[len] = nbr % 10 + '0';
nbr /= 10;
len--;
}
if (n < 0)
res[0] = '-';
return (res);
}