summaryrefslogtreecommitdiff
path: root/src/compiler/GF/Text/CP1252.hs
blob: 1e5affe53f199284393b74f7d6510051024970bc (plain)
1
2
3
4
5
6
module GF.Text.CP1252 where

import Data.Char

decodeCP1252 = map id
encodeCP1252 = map (\x -> if x <= '\255' then x else '?')