bunkum

an old and silly c99 web server with some fun features
Log | Files | Refs | README

compress.h (166B)


      1 #ifndef COMPRESS_H
      2 #define COMPRESS_H
      3 
      4 #include <stddef.h>
      5 
      6 char* zlib_compress(char* buf, size_t* bufsize);
      7 char* gzip_compress(char* buf, size_t* bufsize);
      8 
      9 #endif