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