haskus-binary-1.0: src/lib/Haskus/Format/Binary/Char.hs
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
-- | Character
module Haskus.Format.Binary.Char
( Char8 (..)
)
where
import Haskus.Format.Binary.Word
import Haskus.Format.Binary.Storable
-- | 8-bit character (ASCII, etc.)
newtype Char8
= Char8 Word8
deriving (Show,Eq,Ord,Storable)