We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeea1c5 commit bfc2b16Copy full SHA for bfc2b16
175.scm
@@ -38,6 +38,13 @@
38
(test-eqv #f (ascii-space-or-tab? #\newline))
39
(test-eqv #f (ascii-non-control? (integer->char #x0d)))
40
41
+(test-eqv #f (ascii-non-control? (integer->char #x00)))
42
+(test-eqv #f (ascii-non-control? (integer->char #x1f)))
43
+(test-eqv #t (ascii-non-control? (integer->char #x20)))
44
+(test-eqv #t (ascii-non-control? (integer->char #x7e)))
45
+(test-eqv #f (ascii-non-control? (integer->char #x7f)))
46
+(test-eqv #f (ascii-non-control? (integer->char #x80)))
47
+
48
(let ((lowers "abcdefghijklmnopqrstuvwxyz")
49
(uppers "ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
50
(let loop ((i 0))
0 commit comments