tbase64.h - scribo - Email-based phlog generator
 (HTM) git clone git://git.z3bra.org/scribo.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       tbase64.h (303B)
       ---
            1 #ifndef BASE64_H__
            2 #define BASE64_H__
            3 
            4 size_t base64_encode(char **buf, const unsigned char *msg, size_t len);
            5 size_t base64_decode(char **buf, const unsigned char *msg, size_t len);
            6 size_t base64_fold(FILE *out, char *msg, size_t len, size_t fold);
            7 size_t base64_unfold(char *msg, size_t len);
            8 
            9 #endif