llvm-general-3.4.0.0: src/LLVM/General/Internal/FFI/CommandLine.hs
{-# LANGUAGE
ForeignFunctionInterface
#-}
module LLVM.General.Internal.FFI.CommandLine where
import Foreign.Ptr
import Foreign.C
foreign import ccall unsafe "LLVM_General_ParseCommandLineOptions" parseCommandLineOptions' ::
CUInt -> Ptr (Ptr CChar) -> Ptr CChar -> IO ()
parseCommandLineOptions = uncurry parseCommandLineOptions'