mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-06-11 11:06:33 -06:00
7 lines
133 B
Haskell
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 '?')
|