]> sjero.net Git - wget/blobdiff - src/utils.h
[svn] Made base64 DATA and DEST pointers void*.
[wget] / src / utils.h
index fc6057291f45f486ca8000ab11bbfd5961faab39..c877157d2fb6a1aabfbfcc00fbdefc46e92940f7 100644 (file)
@@ -118,8 +118,8 @@ void xsleep (double);
 /* How many bytes it will take to store LEN bytes in base64.  */
 #define BASE64_LENGTH(len) (4 * (((len) + 2) / 3))
 
-int base64_encode (const char *, int, char *);
-int base64_decode (const char *, char *);
+int base64_encode (const void *, int, char *);
+int base64_decode (const char *, void *);
 
 void stable_sort (void *, size_t, size_t, int (*) (const void *, const void *));