aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/stdlib/atoi.c
blob: f1c375569355b887d0a4cf39fffe4f6d6e42227a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <mlibc/math.h>
#include <stddef.h>
#include <stdint.h>
#include <mlibc/stdlib.h>

int atoi(char *str)
{
	size_t s_str = strlen(str);
	if (!s_str)
		return 0;

	uint8_t negative = 0;
	if (str[0] == '-')
		negative = 1;

	size_t i = 0;
	if (negative)
		i++;

	int ret = 0;
	for (; i < s_str; i++) {
		ret += (str[i] - '0') * pow(10, (s_str - i) - 1);
	}

	if (negative)
		ret *= -1;
	return ret;
}