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
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().