ft_itoa - kibotrel/42-Libft GitHub Wiki

char	*ft_itoa(int n)

Description :

Converts an integer n into a string.

Return Value :

Returns the string equivalent of the given integer, in a new allocated string.

Source code