chiark / gitweb /
buf.c: Step over terminating null byte.
[mLib] / base64.h
index c5943d3e5c98b3b5633d39e3acd9369a4977679a..12174a7cf9947c7f7f1eac74bb43035907569be5 100644 (file)
--- a/base64.h
+++ b/base64.h
@@ -1,13 +1,13 @@
 /* -*-c-*-
  *
- * $Id: base64.h,v 1.1 1999/05/17 20:35:00 mdw Exp $
+ * $Id: base64.h,v 1.4 2004/04/08 01:36:11 mdw Exp $
  *
  * Base64 encoding and decoding
  *
  * (c) 1997 Straylight/Edgeware
  */
 
-/*----- Licensing notice --------------------------------------------------* 
+/*----- Licensing notice --------------------------------------------------*
  *
  * This file is part of the mLib utilities library.
  *
  * it under the terms of the GNU Library General Public License as
  * published by the Free Software Foundation; either version 2 of the
  * License, or (at your option) any later version.
- * 
+ *
  * mLib 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 Library General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU Library General Public
  * License along with mLib; if not, write to the Free
  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  * MA 02111-1307, USA.
  */
 
-/*----- Revision history --------------------------------------------------*
- *
- * $Log: base64.h,v $
- * Revision 1.1  1999/05/17 20:35:00  mdw
- * Base64 encoding and decoding support.
- *
- */
-
-#ifndef BASE64_H
-#define BASE64_H
+#ifndef MLIB_BASE64_H
+#define MLIB_BASE64_H
 
 #ifdef __cplusplus
   extern "C" {
@@ -61,7 +53,7 @@ typedef struct base64_ctx {
 /* --- @base64_encode@ --- *
  *
  * Arguments:  @base64_ctx *ctx@ = pointer to a context block
- *             @const unsigned char *src@ = pointer to a source buffer
+ *             @const void *p@ = pointer to a source buffer
  *             @size_t sz@ = size of the source buffer
  *             @dstr *d@ = pointer to destination string
  *
@@ -72,13 +64,13 @@ typedef struct base64_ctx {
  */
 
 extern void base64_encode(base64_ctx */*ctx*/,
-                         const unsigned char */*src*/, size_t /*sz*/,
+                         const void */*p*/, size_t /*sz*/,
                          dstr */*d*/);
 
 /* --- @base64_decode@ --- *
  *
  * Arguments:  @base64_ctx *ctx@ = pointer to a context block
- *             @const unsigned char *src@ = pointer to a source buffer
+ *             @const void *p@ = pointer to a source buffer
  *             @size_t sz@ = size of the source buffer
  *             @dstr *d@ = pointer to destination string
  *
@@ -89,7 +81,7 @@ extern void base64_encode(base64_ctx */*ctx*/,
  */
 
 extern void base64_decode(base64_ctx */*ctx*/,
-                         const unsigned char */*src*/, size_t /*sz*/,
+                         const void */*p*/, size_t /*sz*/,
                          dstr */*d*/);
 
 /* --- @base64_init@ --- *