-----------------------------------------------------------------------------
-- |
-- Module : System.UTF8IO
-- Copyright : (c) Péter Diviánszky 2008
-- License : BSD3-style (see LICENSE)
--
-- Maintainer: divip@aszt.inf.elte.hu
-- Stability : alpha
-- Portability : portable
--
-- "System.UTF8IO" defines the same entities as "System.IO" but with UTF8 text I/O operations.
--
-- "System.UTF8IO" re-exports "System.IO.UTF8" and "System.IO" but hides the duplicate definitions (in favor of "System.IO.UTF8").
module System.UTF8IO
( module System.IO
, module System.IO.UTF8
) where
import System.IO.UTF8
import System.IO hiding
( print
, putStr
, putStrLn
, getLine
, readLn
, readFile
, writeFile
, appendFile
, getContents
, hGetLine
, hGetContents
, hPutStr
, hPutStrLn
)