rohrpost

A commandline mail client to change the world as we see it.
git clone git://r-36.net/rohrpost
Log | Files | Refs | README | LICENSE

base64.h (181B)


      1 /*
      2  * Copy me if you can.
      3  * by 20h
      4  */
      5 
      6 #ifndef __BASE64_H__
      7 #define __BASE64_H__
      8 
      9 char *b64enc(char *str, int l);
     10 char *b64dec(char *str, int *len);
     11 int b64len(int len);
     12 
     13 #endif
     14