atoi - converts a string to an integer
atol - converts a string to a long
atoll - converts a string to a long long
<< BACK
SYNOPSIS
#include <stdlib.h>
int atoi(const char *s);
long atol(const char *s);
long long atoll(const char *s);