How to save 32bit and 64 bit integers in ruby extension

Hi All,

How can I read and write 32bit or 64bit values into my C extension.

Thanks,
-Alex

Alex Katebi wrote:

Hi All,

How can I read and write 32bit or 64bit values into my C extension.

Thanks,
-Alex

Check out the ruby.h header file. Look for macros for converting C
numeric values to Ruby numeric values, such as LONG2NUM/NUM2LONG and
LL2NUM/NUM2LL.

···

--
Posted via http://www.ruby-forum.com/\.

Hi Tim,

   LL2NUM/NUM2LL did the job. Since I did not see this in the README.EXT of
the 1.9 code base I assumed it did not exist. Next time I will read the
header files better.

Thanks so much!
-Alex

···

On Thu, Aug 7, 2008 at 2:50 PM, Tim Hunter <rmagick@gmail.com> wrote:

Alex Katebi wrote:
> Hi All,
>
> How can I read and write 32bit or 64bit values into my C extension.
>
> Thanks,
> -Alex

Check out the ruby.h header file. Look for macros for converting C
numeric values to Ruby numeric values, such as LONG2NUM/NUM2LONG and
LL2NUM/NUM2LL.
--
Posted via http://www.ruby-forum.com/\.