Libft(15) - atoi
Libft(15) - atoi ATOI(3) BSD Library Functions Manual ATOI(3) NAME atoi, atoi_l -- convert ASCII string to integer LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include int atoi(const char *str); #include int atoi_l(const char *str, locale_t loc); DESCRIPTION The atoi() function converts the initial portion of the string pointed to by str to int representation. It is equivalent to: (int)strto..
2021.06.26