Hi,
This is a re-hash of a question I asked on the XS list a few hours ago. (No replies yet.) It's an issue only with perls built with -Duse64bitint.

Consider the following code and output:
use warnings; use Inline C => Config => BUILD_NOISY => 1; use Inline C => <<'EOC'; int foo(SV * integer) { char * str; str = SvPV_nolen(integer); if(SvIOK(integer)) { printf("IV: %s\n", str); return 1; } if(SvNOK(integer)) { printf("NV: %s\n", str); return 2; } printf("Neither IV nor NV"); return 3; } EOC { use integer; $x = 2 ** 57 + 12345; } $y = 2 ** 57 + 12345; foo($x); foo($y); __END__ Outputs: IV: 144115188075868217 NV: 1.44115188075868e+17
Note that 'foo($y)' creates the string "1.44115188075868e+17". I need to make it create the same string as 'foo($x)' does - ie "144115188075868217". How do I do that from within the foo() function ? (I'm not interested in solutions that involve fiddling with the perl side of things.)

Cheers,
Rob

In reply to XS and -Duse64bitint by syphilis

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.