[go: up one dir, main page]

Menu

[r92]: / trunk / zlib_utils.h  Maximize  Restore  History

Download this file

15 lines (10 with data), 266 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#ifndef ZLIB_UTILS_H
#define ZLIB_UTILS_H
#include <string>
#include <vector>
namespace ZLib {
int compress(const std::vector<std::string> &args);
int decompress(const std::vector<std::string> &args);
int check(const std::vector<std::string> &args);
}
#endif