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

meta.h (242B)


      1 /*
      2  * Copy me if you can.
      3  * by 20h
      4  */
      5 
      6 #ifndef __META_H__
      7 #define __META_H__
      8 
      9 #include "mime.h"
     10 
     11 typedef mime_t meta_t;
     12 
     13 mime_t *meta2mime(meta_t *meta);
     14 meta_t *mime2meta(mime_t *mime);
     15 
     16 meta_t *meta_parsebuf(char *str, int len);
     17 
     18 #endif
     19