Imported Upstream version 2.3
[ossec-hids.git] / src / headers / mem_op.h
1 /* @(#) $Id: mem_op.h,v 1.6 2009/06/24 17:06:26 dcid Exp $ */
2
3 /* Copyright (C) 2009 Trend Micro Inc.
4  * All right 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 3) as published by the FSF - Free Software
9  * Foundation
10  */
11
12
13 #ifndef __MEM_H
14
15 #define __MEM_H
16
17 #include "shared.h"
18
19 void os_FreeArray(char *ch1, char **ch2);
20 int os_IsStrOnArray(char *str, char **array);
21 char *os_LoadString(char *at, char *str);
22
23 #endif