-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_itoa.c
executable file
·19 lines (17 loc) · 1.01 KB
/
ft_itoa.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_itoa.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akharrou <akharrou@student.42.us.org> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/19 07:25:53 by akharrou #+# #+# */
/* Updated: 2019/05/02 08:37:46 by akharrou ### ########.fr */
/* */
/* ************************************************************************** */
#include "../Includes/stdlib_42.h"
#include "../Includes/macros_42.h"
char *ft_itoa(int n)
{
return (ft_itoa_base(n, DECIMAL_BASE, 0));
}