ossp-pkg/str/str_base64.c 1.6 -> 1.7
--- str_base64.c 2002/04/01 08:32:54 1.6
+++ str_base64.c 2003/01/06 19:13:47 1.7
@@ -1,9 +1,9 @@
/*
** OSSP str - String Handling
-** Copyright (c) 1999-2002 Ralf S. Engelschall <rse@engelschall.com>
-** Copyright (c) 1999-2002 The OSSP Project <http://www.ossp.org/>
+** Copyright (c) 1999-2003 Ralf S. Engelschall <rse@engelschall.com>
+** Copyright (c) 1999-2003 The OSSP Project <http://www.ossp.org/>
**
-** This file is part of OSSP str, a string handling and manipulation
+** This file is part of OSSP str, a string handling and manipulation
** library which can be found at http://www.ossp.org/pkg/lib/str/.
**
** Permission to use, copy, modify, and distribute this software for
@@ -133,7 +133,7 @@
*
* Since all base64 input is an integral number of octets, only the
* following cases can arise:
- *
+ *
* (1) the final quantum of encoding input is an integral
* multiple of 24 bits; here, the final unit of encoded
* output will be an integral multiple of 4 characters
@@ -227,7 +227,7 @@
}
/* decoding: base64 -> binary */
-static int
+static int
base64_decode(
unsigned char *dst, str_size_t dstlen,
char const *src, str_size_t srclen)
|
|