genode/repos/demo/src/lib/mini_c/strtol.cc

36 lines
663 B
C++
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Mini C strtol()
* \author Christian Helmuth
* \date 2008-07-24
*/
/*
2013-01-10 21:44:47 +01:00
* Copyright (C) 2008-2013 Genode Labs GmbH
2011-12-22 16:19:25 +01:00
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#include <util/string.h>
#include <base/printf.h>
2011-12-22 16:19:25 +01:00
extern "C" long int strtol(const char *nptr, char **endptr, int base)
{
using namespace Genode;
2011-12-22 16:19:25 +01:00
long result = 0;
if (base != 0 && base != 10) {
PERR("strtol: base of %d not supported", base);
return 0;
}
long const num_chars = ascii_to(nptr, result);
2011-12-22 16:19:25 +01:00
if (endptr)
*endptr = (char *)(nptr + num_chars);
return result;
}