X-Git-Url: https://git.gag.com/?a=blobdiff_plain;ds=sidebyside;f=gnulib%2Fbase64.h;h=50f4712c6936c369cfd602ba191782375beb3814;hb=2627875b7d18858bc1f9f7652811e4d8c15a23eb;hp=6bb9a97f585c3ea80f73db252e4065d262396562;hpb=fb2bd066c2f8b34addafe48d62550e3033a59431;p=debian%2Famanda diff --git a/gnulib/base64.h b/gnulib/base64.h index 6bb9a97..50f4712 100644 --- a/gnulib/base64.h +++ b/gnulib/base64.h @@ -4,7 +4,7 @@ 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 2, or (at your option) + the Free Software Foundation; either version 3, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -31,13 +31,13 @@ extern bool isbase64 (char ch); -extern void base64_encode (const char *restrict in, size_t inlen, - char *restrict out, size_t outlen); +extern void base64_encode (const char *in, size_t inlen, + char *out, size_t outlen); extern size_t base64_encode_alloc (const char *in, size_t inlen, char **out); -extern bool base64_decode (const char *restrict in, size_t inlen, - char *restrict out, size_t *outlen); +extern bool base64_decode (const char *in, size_t inlen, + char *out, size_t *outlen); extern bool base64_decode_alloc (const char *in, size_t inlen, char **out, size_t *outlen);