atoi (3) Linux Manual Page
atoi, atol, atoll – convert a string to an integer Synopsis#include <stdlib.h> int atoi(const char *nptr); long atol(const char *nptr); long long atoll(const char *nptr);Feature Test Macro Requirements for glibc (see feature_test_macros(7)): atoll(): _ISOC99_SOURCE || || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCEDescriptionThe atoi() function converts the initial portion of the string pointed to by nptr to int. The behavior…
