{-# OPTIONS --without-K --safe #-}
module Data.Char.Base where
open import Agda.Builtin.Char public using ( Char )
renaming
( primIsLower to isLower
; primIsDigit to isDigit
; primIsAlpha to isAlpha
; primIsSpace to isSpace
; primIsAscii to isAscii
; primIsLatin1 to isLatin1
; primIsPrint to isPrint
; primIsHexDigit to isHexDigit
; primToUpper to toUpper
; primToLower to toLower
; primCharToNat to toNat
; primNatToChar to fromNat
)
open import Agda.Builtin.String public using ()
renaming ( primShowChar to show )