packages feed

babl-0.0.0.1: src/BABL.hs

module BABL
    ( babl_init
    , babl_exit
    , module BABL.Format
    ) where

import BABL.Format

import qualified BABL.FFI as FFI

-- | Initialize the BABL environment.
--   This function must be called before performing any conversions
babl_init :: IO ()
babl_init = FFI.c_babl_init

-- | Exit and clean up after BABL has been used
babl_exit = FFI.c_babl_exit