summaryrefslogtreecommitdiffstatshomepage
path: root/tekuti/base64.scm
diff options
context:
space:
mode:
Diffstat (limited to 'tekuti/base64.scm')
-rw-r--r--tekuti/base64.scm24
1 files changed, 12 insertions, 12 deletions
diff --git a/tekuti/base64.scm b/tekuti/base64.scm
index a7426cb..793682d 100644
--- a/tekuti/base64.scm
+++ b/tekuti/base64.scm
@@ -1,17 +1,17 @@
;; Tekuti
-;; Copyright (C) 2008, 2010 Andy Wingo <wingo at pobox dot com>
+;; Copyright (C) 2008, 2010, 2012 Andy Wingo <wingo at pobox dot com>
;; Copyright (C) 2009 Andreas Rottmann <a dot rottmann at gmx dot at>
-;; This program is free software; you can redistribute it and/or
-;; modify it under the terms of the GNU General Public License as
-;; published by the Free Software Foundation; either version 3 of
-;; the License, or (at your option) any later version.
-;;
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-;; GNU General Public License for more details.
-;;
+;; This program is free software; you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation; either version 3 of
+;; the License, or (at your option) any later version.
+;;
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+;;
;; You should have received a copy of the GNU General Public License
;; along with this program; if not, contact:
;;
@@ -35,7 +35,7 @@
(define (int->b64-byte i)
(bytevector-u8-ref b64-bytes (logand i 63)))
-
+
(define b64-byte-ranges
(map cons
(map char->integer '(#\A #\a #\0 #\+ #\/))