add atoi function

This commit is contained in:
Robert 2023-09-06 00:12:39 +02:00
parent 43278fb351
commit d0542c1580
2 changed files with 31 additions and 0 deletions

View file

@ -1,6 +1,8 @@
#ifndef _CLIPPER_STDLIB_H_
#define _CLIPPER_STDLIB_H_
int atoi(const char* str);
char* itoa(int value, char* buffer, int base);
char* utoa(unsigned int value, char* buffer, int base);

View file

@ -1,5 +1,34 @@
#include "stdlib.h"
int atoi(const char* str) {
// Blled away whitespace
while(*str++ == ' ');
str--;
int val = 0;
int factor = 1;
if (*str == '+') {
str++;
} else if (*str == '-') {
factor = -1;
str++;
}
const char* start = str;
while (*str >= '0' && *str <= '9') {
str++;
}
int power_of_ten = 1;
while (start < str) {
val += power_of_ten * ((*(--str)) - '0');
power_of_ten *= 10;
}
return factor * val;
}
char* itoa(int value, char* buffer, int base) {
char* ptr;
char* value_start;