antirez / smaz

Small strings encryption library

smaz / smaz.h
100644 8 lines (5 sloc) 0.169 kb
1
2
3
4
5
6
7
8
#ifndef _SMAZ_H
#define _SMAZ_H
 
int smaz_compress(char *in, int inlen, char *out, int outlen);
int smaz_decompress(char *in, int inlen, char *out, int outlen);
 
#endif