The character corresponding to a given numeric code
This function maps a numeric code to the corresponding character,
for example:
Completion Axiom (
(equal (code-char x) (if (and (integerp x) (>= x 0) (< x 256)) (code-char x) (code-char 0)))
(and (integerp x) (>= x 0) (< x 256))
ACL2 supports 8-bit characters. Inputs not between