Searched defs:hex_only (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/pcitool/
H A Dpcitool_ui.c79 static int get_value64(char *value_str, uint64_t *value, boolean_t hex_only);
837 * If the hex_only arg is true, interpret all strings as hex.
841 get_value64(char *value_str, uint64_t *value, boolean_t hex_only) argument
857 if (!hex_only && (value_str[0] != '0')) {
863 } else if (hex_only) {
883 *value = strtoull(value_str, NULL, (hex_only ? 16 : 0));

Completed in 58 milliseconds