t3x.org / sketchy / library / cgtp.html
SketchyLISP
Reference
  Copyright (C) 2006
Nils M Holm

char>?

Conformance: R5RS

Purpose: Test whether two chars are in lexically descending order.

Arguments:
X - char
Y - char

Implementation:

(define (char>? x y)
  (char<? y x))

Example:

(char>? #\b #\a) 
=> #t

See also:
char-ci>?, char<?, char=?, char<=?, char>=?, string>?, equal?.