summaryrefslogtreecommitdiff
path: root/ghc/compiler/utils/UnicodeUtil.lhs
diff options
context:
space:
mode:
Diffstat (limited to 'ghc/compiler/utils/UnicodeUtil.lhs')
-rw-r--r--ghc/compiler/utils/UnicodeUtil.lhs36
1 files changed, 0 insertions, 36 deletions
diff --git a/ghc/compiler/utils/UnicodeUtil.lhs b/ghc/compiler/utils/UnicodeUtil.lhs
deleted file mode 100644
index 56e95a5434..0000000000
--- a/ghc/compiler/utils/UnicodeUtil.lhs
+++ /dev/null
@@ -1,36 +0,0 @@
-Various Unicode-related utilities.
-
-\begin{code}
-module UnicodeUtil(
- stringToUtf8, intsToUtf8
- ) where
-
-#include "HsVersions.h"
-
-import Panic ( panic )
-import Char ( chr, ord )
-\end{code}
-
-\begin{code}
-stringToUtf8 :: String -> String
-stringToUtf8 s = intsToUtf8 (map ord s)
-
-intsToUtf8 :: [Int] -> String
-intsToUtf8 [] = ""
-intsToUtf8 (c:s)
- | c >= 1 && c <= 0x7F = chr c : intsToUtf8 s
- | c < 0 = panic ("charToUtf8 ("++show c++")")
- | c <= 0x7FF = chr (0xC0 + c `div` 0x40 ) :
- chr (0x80 + c `mod` 0x40) :
- intsToUtf8 s
- | c <= 0xFFFF = chr (0xE0 + c `div` 0x1000 ) :
- chr (0x80 + c `div` 0x40 `mod` 0x40) :
- chr (0x80 + c `mod` 0x40) :
- intsToUtf8 s
- | c <= 0x10FFFF = chr (0xF0 + c `div` 0x40000 ) :
- chr (0x80 + c `div` 0x1000 `mod` 0x40) :
- chr (0x80 + c `div` 0x40 `mod` 0x40) :
- chr (0x80 + c `mod` 0x40) :
- intsToUtf8 s
- | otherwise = panic ("charToUtf8 "++show c)
-\end{code}