This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

strtodb()

Hello,
I am trying to use the function "strtodb" to convert hex-strings to double bits.
I am including <stdlib.h> and <stdio.h>, but the linker complains
"Error 140: 'strtodb' undefined; assuming .... ".
What could be the problem?
Holger

Parents
  • use the function "strtodb"

    You make that sound as if this were some standard function that's always supposed to be available, so you can just use it.

    Well, it's not, so if you want to use it, you'll have to provide it yourself.

    Either that, or you have to check what the name of the function you're trying to use really is. It might be strtod().

Reply
  • use the function "strtodb"

    You make that sound as if this were some standard function that's always supposed to be available, so you can just use it.

    Well, it's not, so if you want to use it, you'll have to provide it yourself.

    Either that, or you have to check what the name of the function you're trying to use really is. It might be strtod().

Children
No data