Imported Upstream version 2.7
[ossec-hids.git] / src / os_zlib / os_zlib.h
1 /* @(#) $Id: ./src/os_zlib/os_zlib.h, 2011/09/08 dcid Exp $
2  */
3
4 /* Copyright (C) 2009 Trend Micro Inc.
5  * All rights reserved.
6  *
7  * This program is a free software; you can redistribute it
8  * and/or modify it under the terms of the GNU General Public
9  * License (version 2) as published by the FSF - Free Software
10  * Foundation
11  */
12
13
14 #ifndef __OS_ZLIB_H
15 #define __OS_ZLIB_H
16
17 #include "zlib.h"
18
19 /* os_compress: Compress a string with zlib. */
20 int os_compress(char *src, char *dst, int src_size, int dst_size);
21
22 /* os_uncompress: Uncompress a string with zlib. */
23 int os_uncompress(char *src, char *dst, int src_size, int dst_size);
24
25 #endif
26
27 /* EOF */