File: Cpphs.hs

package info (click to toggle)
cpphs 1.18.5-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 812 kB
  • ctags: 21
  • sloc: haskell: 1,707; sh: 120; makefile: 49; ansic: 11
file content (31 lines) | stat: -rwxr-xr-x 1,216 bytes parent folder | download
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
-----------------------------------------------------------------------------
-- |
-- Module      :  Language.Preprocessor.Cpphs
-- Copyright   :  2000-2006 Malcolm Wallace
-- Licence     :  LGPL
--
-- Maintainer  :  Malcolm Wallace <Malcolm.Wallace@cs.york.ac.uk>
-- Stability   :  experimental
-- Portability :  All
--
-- Include the interface that is exported
-----------------------------------------------------------------------------

module Language.Preprocessor.Cpphs
  ( runCpphs, runCpphsReturningSymTab
  , cppIfdef
  , macroPass, macroPassReturningSymTab
  , CpphsOptions(..), BoolOptions(..)
  , parseOptions, defaultCpphsOptions, defaultBoolOptions
  , module Language.Preprocessor.Cpphs.Position
  ) where

import Language.Preprocessor.Cpphs.CppIfdef(cppIfdef)
import Language.Preprocessor.Cpphs.MacroPass(macroPass
                                            ,macroPassReturningSymTab)
import Language.Preprocessor.Cpphs.RunCpphs(runCpphs
                                           ,runCpphsReturningSymTab)
import Language.Preprocessor.Cpphs.Options
       (CpphsOptions(..), BoolOptions(..), parseOptions
       ,defaultCpphsOptions,defaultBoolOptions)
import Language.Preprocessor.Cpphs.Position