tgrekov-pipex
HIVE pipex May 2024
|
Definition in file ft_itoa.c.
#include "libft.h"
Go to the source code of this file.
Functions | |
char * | ft_itoa (int n) |
Converts integer n to an allocated ASCII string. | |
char * ft_itoa | ( | int | n | ) |
Converts integer n
to an allocated ASCII string.
[in] | n | Integer to convert |
char* | Null-terminated string containing an ASCII representation of n , preceded by '-' if n is negative. If allocation fails, returns NULL . |
Definition at line 50 of file ft_itoa.c.
References ft_calloc().