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

char=?

Conformance: R5RS

Purpose: Test whether two chars are equal.

Arguments:
X - char
Y - char

Model:

(define (char=? x y)
  (= (char->integer x)
     (char->integer y)))

Implementation:

; This function is a primitive function.

Example:

(char=? #\c #\c) 
=> #t

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