Lines Matching full:to
17 /** @brief String to long conversion with error check.
20 * to avoid err check bloating. Passed err reference should be initialized
21 * to zero.
27 * -ERANGE if numeric string input is to large to convert.
34 /** @brief String to unsigned long conversion with error check.
37 * to avoid err check bloating. Passed err reference should be initialized
38 * to zero.
43 * Set to -EINVAL on invalid string input.
44 * Set to -ERANGE if numeric string input is to large to convert.
51 /** @brief String to unsigned long long conversion with error check.
54 * to avoid err check bloating. Passed err reference should be initialized
55 * to zero.
60 * Set to -EINVAL on invalid string input.
61 * Set to -ERANGE if numeric string input is to large to convert.
68 /** @brief String to boolean conversion with error check.
71 * to avoid err check bloating. Passed err reference should be initialized
72 * to zero.
77 * Set to -EINVAL on invalid string input.
78 * Set to -ERANGE if numeric string input is to large to convert.