[project @ 1999-11-01 02:04:31 by andy]
[ghc-hetmet.git] / ghc / interpreter / lib / Char.hs
1 -----------------------------------------------------------------------------
2 -- Standard Library: Char operations
3 --
4 -- Suitable for use with Hugs 98
5 -----------------------------------------------------------------------------
6
7 module Char ( 
8     isAscii, isLatin1, isControl, isPrint, isSpace, isUpper, isLower,
9     isAlpha, isDigit, isOctDigit, isHexDigit, isAlphaNum,
10     digitToInt, intToDigit,
11     toUpper, toLower,
12     ord, chr,
13     readLitChar, showLitChar, lexLitChar,
14
15     -- ... and what the prelude exports
16     Char, String
17     ) where
18
19 -- This module is (almost) empty; Char operations are currently defined in
20 -- the prelude, but should eventually be moved to this library file instead.
21 -- No Unicode support yet. 
22
23 isLatin1 c = True
24
25 -----------------------------------------------------------------------------