Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried

sscanf(str, "%016llX", &int64 );

but seems not safe. Is there a fast and safe way to do the type casting?

Thanks~

share|improve this question
What do you mean by "not safe" ? – Paul R Nov 9 '10 at 9:55
I don't know. I tried to use this to do the casting among a large number of hex strings, and sometimes it would report segment fault – Mickey Shine Nov 9 '10 at 9:57
Could you show the declaration and initialization of str? – Flinsch Nov 9 '10 at 9:59
1  
Either your header or your source is wrong... (see intro of my answer) – DevSolar Nov 9 '10 at 10:03
1  
See my answer. The "016" in combination with sscanf() doesn't make sense. Given that code snippet, strtol() or strtoll() (depending on platform) are the safer option. Check for success! – DevSolar Nov 9 '10 at 10:12
show 2 more comments

3 Answers

up vote 2 down vote accepted

Don't bother with functions in the scanf family. They're nearly impossible to use robustly. Here's a general safe use of strtoull:

char *str, *end;
unsigned long long result;
errno = 0;
result = strtoull(str, &end, 16);
if (result == 0 && end == str) {
    /* str was not a number */
} else if (result == ULLONG_MAX && errno) {
    /* the value of str does not fit in unsigned long long */
} else if (*end) {
    /* str began with a number but has junk left over at the end */
}

Note that strtoull accepts an optional 0x prefix on the string, as well as optional initial whitespace and a sign character (+ or -). If you want to reject these, you should perform a test before calling strtoull, for instance:

if (!isxdigit(str[0]) || (str[1] && !isxdigit(str[1])))

If you also wish to disallow overly long representations of numbers (leading zeros), you could check the following condition before calling strtoull:

if (str[0]=='0' && str[1])

One more thing to keep in mind is that "negative numbers" are not considered outside the range of conversion; instead, a prefix of - is treated the same as the unary negation operator in C applied to an unsigned value, so for example strtoull("-2", 0, 16) will return ULLONG_MAX-1 (without setting errno).

share|improve this answer
Generally speaking I agree with your sentiments regarding the scanf() familiy. They do make sense in controlled environments, e.g. reading in files that your application has written itself – DevSolar Nov 9 '10 at 11:55
@DevSolar: Indeed, my comment there was intended as an answer to OP's question on safe usage, not general advice. The scanf family works fine for reading Linux /proc files, for example. – R.. Nov 9 '10 at 18:58

Your title (at present) contradicts the code you provided. If you want to do what your title was originally (convert a string to an integer), then you can use this answer.


You could use the strtoull function, which unlike sscanf is a function specifically geared towards reading textual representations of numbers.

const char *test = "123456789abcdef0";

errno = 0;
unsigned long long result = strtoull(test, NULL, 16);

if (errno == EINVAL)
{
    // not a valid number
}
else if (errno == ERANGE)
{
    // does not fit in an unsigned long long
}
share|improve this answer
1  
Under my understanding, he wants to convert from integer to string, not vice versa. ;) – Flinsch Nov 9 '10 at 10:03
1  
@Flinsch, the title changed, but his original code suggests he wants to convert from string to integer. I'm not sure you can see the question's edit history, but the title originally stated that he wanted to convert a string to an integer. – dreamlax Nov 9 '10 at 10:04
Actually, scanf() et al. are defined in terms of strtol(). For halfway decent input, they are functionally identical as far as parsing numbers is concerned. I admit strtol() handles failure more gracefully. – DevSolar Nov 9 '10 at 10:09
Since accessing errno might be mildly expensive, I prefer only checking the value of errno if result was ULLONG_MAX. And EINVAL is optional on conversion failure, so for robustness you need to use the end-pointer argument and check whether it's equal to the starting pointer you passed in to know if any conversion was performed. – R.. Nov 9 '10 at 10:48

At the time I wrote this answer, your title suggested you'd want to write an int64_t into a string, while your code did the opposite (reading a hex string into an int64_t). I answered "both ways":

The <inttypes.h> header has conversion macros to handle the ..._t types safely:

#include <stdio.h>
#include <inttypes.h>

sprintf( str, "%016" PRIX64, int64 );

Or (if that is indeed what you're trying to do), the other way round:

#include <stdio.h>
#include <inttypes.h>

sscanf( str, "%" SCNx64, &int64 );

Note that you cannot enforce widths etc. with the scanf() function family. It parses what it gets, which can yield undesired results when the input does not adhere to expected formatting. Oh, and the scanf() function family only knows (lowercase) "x", not (uppercase) "X".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.