rp

simple email tools
git clone https://git.parazyd.org/rp
Log | Files | Refs | README | LICENSE

util.h (315B)


      1 /* See LICENSE file for copyright and license details */
      2 
      3 #ifndef __RPUTIL_H__
      4 #define __RPUTIL_H__
      5 
      6 int utilmain(int argc, char *argv[]);
      7 
      8 int *randint(int max);
      9 char *randstring(char *str, int size);
     10 
     11 int genmsgid(char *foo);
     12 int genmimeb(char *foo);
     13 int humansize(char *sizestr);
     14 int getfpr(char *desc);
     15 
     16 #endif