summaryrefslogtreecommitdiff
path: root/src/stdlib/atoi.c
blob: 92ad6e8a5903e8240406a69b9f86b5a649cf0343 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdlib.h>
#include "_stdlib.h"

/** convert string to integer **/

int atoi(const char * nptr)
{
	SIGNAL_SAFE(0);
	return (int)strtol(nptr, (char**)NULL, 10);
}

/***
converts the string at ARGUMENT(nptr) to an TYPE(int) value,
using base 10. The conversion goes until the first non-digit character.
***/

/*
LC_CTYPE
RETURN_SUCCESS(the converted value)
STDC(1)
*/