1
0
forked from GitHub/gf-core
Files
gf-core/src/GF/Text/CP1252.hs
2008-10-25 20:25:09 +00:00

7 lines
133 B
Haskell

module GF.Text.CP1252 where
import Data.Char
decodeCP1252 = map id
encodeCP1252 = map (\x -> if x <= '\255' then x else '?')