[project @ 1996-12-19 18:35:23 by simonpj]
[ghc-hetmet.git] / ghc / lib / required / Char.lhs
1 %
2 % (c) The AQUA Project, Glasgow University, 1994-1996
3 %
4
5 \section[Char]{Module @Char@}
6
7 \begin{code}
8 module Char ( 
9     isAscii, isControl, isPrint, isSpace, isUpper, isLower,
10     isAlpha, isDigit, isOctDigit, isHexDigit, isAlphanum, toUpper, toLower
11  ) where
12
13 import Prelude  ()
14 import PrelBase
15 \end{code}
16
17
18
19
20