#ifndef __BASE64_H_
 #define __BASE64_H_

typedef struct __base64_ {
    char inalphabet[256],
         decoder[256];
} base64_t;

void base64_init(base64_t *);
int base64_decode(base64_t *, line_t *, char *);
int base64_encode(line_t *, line_t *);

#endif


syntax highlighted by Code2HTML, v. 0.9.1