On Wed, 2005-05-25 at 11:38 +1000, Sisyphus wrote: > > is there any way to reliably convert long longs (64bit integers) to SVs > > (and back) on 32bit platforms without losing information, and without > > compiling with -Duse64bitint? Both, IV and NV don't seem to provide > > enough room to store large values. > > Use sprintf() to convert the long long to a char*, then convert the char* to > an SV*.
Thanks, this seems to work well. -- Bye, -Torsten