ANSIfy b64_pton

This commit is contained in:
Ed Maste 2014-11-27 02:15:35 +00:00
parent 8bc29bb269
commit d4287c3092

View file

@ -193,10 +193,7 @@ b64_ntop(u_char const *src, size_t srclength, char *target, size_t targsize) {
*/
int
b64_pton(src, target, targsize)
char const *src;
u_char *target;
size_t targsize;
b64_pton(const char *src, u_char *target, size_t targsize)
{
int tarindex, state, ch;
u_char nextbyte;