byteslice-0.2.5.2: src-no-ghc-cstrlen/Cstrlen.hs
{-# language MagicHash #-}
{-# language TypeFamilies #-}
{-# language UnliftedFFITypes #-}
module Cstrlen
( cstringLength#
) where
import GHC.Exts (Addr#,Int#)
foreign import ccall unsafe "strlen" c_strlen :: Addr# -> Int#
cstringLength# :: Addr# -> Int#
cstringLength# = c_strlen