Lines Matching full:str
17 * @param str The decimal string to be parsed
20 * @retval -EINVAL if str could not be parsed
21 * @retval 0 if str successfully parsed
23 int gnss_parse_dec_to_nano(const char *str, int64_t *nano);
30 * @param str The decimal string to be parsed
33 * @retval -EINVAL if str could not be parsed
34 * @retval 0 if str successfully parsed
36 int gnss_parse_dec_to_micro(const char *str, uint64_t *micro);
43 * @param str The decimal string to be parsed
46 * @retval -EINVAL if str could not be parsed
47 * @retval 0 if str successfully parsed
49 int gnss_parse_dec_to_milli(const char *str, int64_t *milli);
56 * @param str Decimal string to be parsed
60 * @retval -EINVAL if str could not be parsed
61 * @retval 0 if str successfully parsed
63 int gnss_parse_atoi(const char *str, uint8_t base, int32_t *integer);