You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RETURN VALUES
The strtoul(), strtoull(), strtoumax() and strtouq() functions return
either the result of the conversion or, if there was a leading minus
sign, the negation of the result of the conversion, unless the original
(non-negated) value would overflow; in the latter case, strtoul() returns
ULONG_MAX, strtoull() returns ULLONG_MAX, strtoumax() returns
UINTMAX_MAX, and strtouq() returns ULLONG_MAX. In all cases, errno is
set to ERANGE. If no conversion could be performed, 0 is returned and
the global variable errno is set to EINVAL (the last feature is not por-
table across all platforms).
strtoul function returns values on error which are taken as valid inputs and carried over to the result of the function call
from man strtoul
strtoul
function returns values on error which are taken as valid inputs and carried over to the result of the function callMnemonicKit/MnemonicKit/String+MnemonicData.swift
Line 5 in caf90cd
Use Int(outChars, radix: 16) instead and care for nil value
The text was updated successfully, but these errors were encountered: