Change definition of b64_pton from K&R to ANSI
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
34adefae7f
commit
6ba2b53c53
|
@ -194,10 +194,7 @@ b64_ntop(u_char const *src, size_t srclength, char *target, size_t targsize) {
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int
|
int
|
||||||
b64_pton(src, target, targsize)
|
b64_pton(char const *src, unsigned char *target, size_t targsize)
|
||||||
char const *src;
|
|
||||||
u_char *target;
|
|
||||||
size_t targsize;
|
|
||||||
{
|
{
|
||||||
int tarindex, state, ch;
|
int tarindex, state, ch;
|
||||||
char *pos;
|
char *pos;
|
||||||
|
|
Loading…
Reference in New Issue