imperative-edsl-0.6: src/Language/Embedded/Imperative/Frontend/General.hs
-- | Exports the general parts of imperative front ends. The motivation for this
-- module is to support making specialized front ends (e.g. like
-- "Language.Embedded.Imperative.Frontend" but for a specific instruction set).
-- These exports are the parts of the front end that are independent of the
-- instruction set and/or expression language.
module Language.Embedded.Imperative.Frontend.General
( Ref
, Arr
, IArr
, Border (..)
, IxRange
, IsPointer
, IO.IOMode (..)
, Handle
, stdin
, stdout
, PrintfArg
, Formattable
, Ptr
, Object
, FunArg (..)
, Assignable
, Definition
, cedecl
) where
-- Note: Important not to export the constructors of `Ref`, `Arr`, etc. since
-- the user is not supposed to inspect such values.
import qualified System.IO as IO
import Language.Embedded.Imperative.CMD
import Language.C.Syntax
import Language.C.Quote.GCC