HelenOS sources

_strtounsigned    297 common/strtol.c 	return _strtounsigned(nptr, endptr, base, ULONG_MAX, &errno, false);
_strtounsigned    315 common/strtol.c 	return _strtounsigned(nptr, endptr, base, ULLONG_MAX, &errno, false);
_strtounsigned    333 common/strtol.c 	return _strtounsigned(nptr, endptr, base, UINTMAX_MAX, &errno, false);
_strtounsigned    371 common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT8_MAX, &rc, true);
_strtounsigned    406 common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT16_MAX, &rc, true);
_strtounsigned    441 common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT32_MAX, &rc, true);
_strtounsigned    476 common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT64_MAX, &rc, true);
_strtounsigned    546 common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, SIZE_MAX, &rc, true);
_strtounsigned    297 kernel/generic/common/strtol.c 	return _strtounsigned(nptr, endptr, base, ULONG_MAX, &errno, false);
_strtounsigned    315 kernel/generic/common/strtol.c 	return _strtounsigned(nptr, endptr, base, ULLONG_MAX, &errno, false);
_strtounsigned    333 kernel/generic/common/strtol.c 	return _strtounsigned(nptr, endptr, base, UINTMAX_MAX, &errno, false);
_strtounsigned    371 kernel/generic/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT8_MAX, &rc, true);
_strtounsigned    406 kernel/generic/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT16_MAX, &rc, true);
_strtounsigned    441 kernel/generic/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT32_MAX, &rc, true);
_strtounsigned    476 kernel/generic/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT64_MAX, &rc, true);
_strtounsigned    546 kernel/generic/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, SIZE_MAX, &rc, true);
_strtounsigned    297 uspace/lib/c/common/strtol.c 	return _strtounsigned(nptr, endptr, base, ULONG_MAX, &errno, false);
_strtounsigned    315 uspace/lib/c/common/strtol.c 	return _strtounsigned(nptr, endptr, base, ULLONG_MAX, &errno, false);
_strtounsigned    333 uspace/lib/c/common/strtol.c 	return _strtounsigned(nptr, endptr, base, UINTMAX_MAX, &errno, false);
_strtounsigned    371 uspace/lib/c/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT8_MAX, &rc, true);
_strtounsigned    406 uspace/lib/c/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT16_MAX, &rc, true);
_strtounsigned    441 uspace/lib/c/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT32_MAX, &rc, true);
_strtounsigned    476 uspace/lib/c/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, UINT64_MAX, &rc, true);
_strtounsigned    546 uspace/lib/c/common/strtol.c 	uintmax_t r = _strtounsigned(nptr, &lendptr, base, SIZE_MAX, &rc, true);
HelenOS homepage, sources at GitHub