qh_str_to_schar()

QNX SDP8.0QNX Helpers Developer's GuideAPIDeveloper

Safely converts a string into a signed char

Synopsis:

#include <qh/string.h>
int qh_str_to_schar(const char *str,
                    int base,
                    signed char *number,
                    size_t *end_offset)

Arguments:

str
The string to convert into a number.
base
The base of the number to parse.
number
Pointer to the location where the number can be stored.
end_offset
The offset where parsing stopped.

Library:

qh

Description:

This function is similar to strtoll(), but does more error checking on the result of the conversion and ensures that the result fits in a signed char. This simplifies the work the caller is required to do, which is only to validate that the return value from qh_str_to_schar() is EOK.

For conversion of strings that are part of a longer one (e.g., a comma-separated list), an optional end_offset parameter can be specified. When you specify end_offset, the function returns successfully even if there are trailing characters. When non-NULL, end_offset is always updated with the offset of the last character the function parsed. When NULL, the function treats trailing characters as invalid, except for characters recognized by isspace().

For more information on using this function, see the documentation for strtoll().

Returns:

EOK on success or a standard errno on failure (errno is also set, and number isn't updated except for ERANGE).

ERANGE
The number value is either smaller than SCHAR_MIN (and SCHAR_MIN is returned) or larger than SCHAR_MAX (and SCHAR_MAX is returned).
Page updated: