1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
{-# LANGUAGE CPP, ForeignFunctionInterface, MagicHash, UnliftedFFITypes #-}
-- |
-- Module : Data.Double.Conversion.FFI
-- Copyright : (c) 2011 MailRank, Inc.
--
-- License : BSD-style
-- Maintainer : bos@serpentine.com
-- Stability : experimental
-- Portability : GHC
--
-- FFI interface support for converting between double precision
-- floating point values and text.
module Data.Double.Conversion.FFI
(
c_Text_ToExponential
, c_Text_ToFixed
, c_Text_ToPrecision
, c_Text_ToShortest
, c_ToExponentialLength
, c_ToFixedLength
, c_ToPrecisionLength
, c_ToShortestLength
, c_ToExponential
, c_ToFixed
, c_ToPrecision
, c_ToShortest
) where
import Data.Word (Word8)
#if __GLASGOW_HASKELL__ >= 703
import Foreign.C.Types (CDouble(CDouble), CInt(CInt))
#else
import Foreign.C.Types (CDouble, CInt)
#endif
import Foreign.Ptr (Ptr)
import GHC.Prim (MutableByteArray#)
foreign import ccall unsafe "hs-double-conversion.h _hs_ToShortestLength"
c_ToShortestLength :: CInt
foreign import ccall unsafe "hs-double-conversion.h _hs_Text_ToShortest"
c_Text_ToShortest :: CDouble -> MutableByteArray# s -> IO CInt
foreign import ccall unsafe "hs-double-conversion.h _hs_ToShortest"
c_ToShortest :: CDouble -> Ptr Word8 -> IO CInt
foreign import ccall unsafe "hs-double-conversion.h _hs_ToFixedLength"
c_ToFixedLength :: CInt
foreign import ccall unsafe "hs-double-conversion.h _hs_Text_ToFixed"
c_Text_ToFixed :: CDouble -> MutableByteArray# s -> CInt -> IO CInt
foreign import ccall unsafe "hs-double-conversion.h _hs_ToFixed"
c_ToFixed :: CDouble -> Ptr Word8 -> CInt -> IO CInt
foreign import ccall unsafe "hs-double-conversion.h _hs_ToExponentialLength"
c_ToExponentialLength :: CInt
foreign import ccall unsafe "hs-double-conversion.h _hs_Text_ToExponential"
c_Text_ToExponential :: CDouble -> MutableByteArray# s -> CInt -> IO CInt
foreign import ccall unsafe "hs-double-conversion.h _hs_ToExponential"
c_ToExponential :: CDouble -> Ptr Word8 -> CInt -> IO CInt
foreign import ccall unsafe "hs-double-conversion.h _hs_ToPrecisionLength"
c_ToPrecisionLength :: CInt
foreign import ccall unsafe "hs-double-conversion.h _hs_Text_ToPrecision"
c_Text_ToPrecision :: CDouble -> MutableByteArray# s -> CInt -> IO CInt
foreign import ccall unsafe "hs-double-conversion.h _hs_ToPrecision"
c_ToPrecision :: CDouble -> Ptr Word8 -> CInt -> IO CInt
|