LibClang-0.1.0: src/Clang/Alloc.hs
module Clang.Alloc where
import Foreign.Ptr(Ptr(..))
class Alloc a where
alloc :: IO (Ptr a)
allocSet :: a -> IO (Ptr a)
dealloc :: Ptr a -> IO ()
module Clang.Alloc where
import Foreign.Ptr(Ptr(..))
class Alloc a where
alloc :: IO (Ptr a)
allocSet :: a -> IO (Ptr a)
dealloc :: Ptr a -> IO ()