mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Move stdlib.h functions into their own directory.
This commit is contained in:
parent
ab0177113f
commit
18356edb69
34 changed files with 65 additions and 65 deletions
90
libc/stdlib/integer.cpp
Normal file
90
libc/stdlib/integer.cpp
Normal file
|
@ -0,0 +1,90 @@
|
|||
/*******************************************************************************
|
||||
|
||||
Copyright(C) Jonas 'Sortie' Termansen 2011.
|
||||
|
||||
This file is part of the Sortix C Library.
|
||||
|
||||
The Sortix C Library is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or (at your
|
||||
option) any later version.
|
||||
|
||||
The Sortix C Library is distributed in the hope that it will be useful, but
|
||||
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
||||
License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
stdlib/integer.cpp
|
||||
Converts integers represented as strings to binary representation.
|
||||
|
||||
*******************************************************************************/
|
||||
|
||||
#include <ctype.h>
|
||||
#include <stddef.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
static int Debase(char c)
|
||||
{
|
||||
if ( '0' <= c && c <= '9' ) { return c - '0'; }
|
||||
if ( 'a' <= c && c <= 'z' ) { return 10 + c - 'a'; }
|
||||
if ( 'A' <= c && c <= 'Z' ) { return 10 + c - 'A'; }
|
||||
return -1;
|
||||
}
|
||||
|
||||
template <class INT, bool UNSIGNED> INT ParseInteger(const char* str, char** endptr, int base)
|
||||
{
|
||||
const char* origstr = str;
|
||||
int origbase = base;
|
||||
while ( isspace(*str) ) { str++; }
|
||||
if ( base < 0 || 36 < base ) { if ( endptr ) { *endptr = (char*) str; } return 0; }
|
||||
INT result = 0;
|
||||
bool negative = false;
|
||||
char c = *str;
|
||||
if ( !UNSIGNED && c == '-' ) { str++; negative = true; }
|
||||
if ( !UNSIGNED && c == '+' ) { str++; negative = false; }
|
||||
if ( !base && str[0] == '0' )
|
||||
{
|
||||
if ( str[1] == 'x' || str[1] == 'X' ) { str += 2; base = 16; }
|
||||
else if ( 0 <= Debase(str[1]) && Debase(str[1]) < 8 ) { str++; base = 8; }
|
||||
}
|
||||
if ( !base ) { base = 10; }
|
||||
if ( origbase == 16 && str[0] == '0' && (str[1] == 'x' || str[1] == 'X') ) { str += 2; }
|
||||
size_t numconvertedchars = 0;
|
||||
while ( (c = *str ) )
|
||||
{
|
||||
int val = Debase(c);
|
||||
if ( val < 0 ) { break; }
|
||||
if ( base <= val ) { break; }
|
||||
if ( !UNSIGNED && negative ) { val = -val; }
|
||||
// TODO: Detect overflow!
|
||||
result = result * (INT) base + (INT) val;
|
||||
str++;
|
||||
numconvertedchars++;
|
||||
}
|
||||
if ( !numconvertedchars ) { str = origstr; result = 0; }
|
||||
if ( endptr ) { *endptr = (char*) str; }
|
||||
return result;
|
||||
}
|
||||
|
||||
extern "C" long strtol(const char* str, char** endptr, int base)
|
||||
{
|
||||
return ParseInteger<long, false>(str, endptr, base);
|
||||
}
|
||||
|
||||
extern "C" long long strtoll(const char* str, char** endptr, int base)
|
||||
{
|
||||
return ParseInteger<long long, false>(str, endptr, base);
|
||||
}
|
||||
|
||||
extern "C" unsigned long strtoul(const char* str, char** endptr, int base)
|
||||
{
|
||||
return ParseInteger<unsigned long, true>(str, endptr, base);
|
||||
}
|
||||
|
||||
extern "C" unsigned long long strtoull(const char* str, char** endptr, int base)
|
||||
{
|
||||
return ParseInteger<unsigned long long, true>(str, endptr, base);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue