cmanuals

A simple custom manual to the functions and methods in the ISO C99 programming language.

View on GitHub
atoi, atol, atoll - cmanuals

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);

RETURN VALUE

The converted value or 0 for error.