d135fbe7a05c4ff35f5ff73898df4f69e9b4aeb9
[ossec-hids.git] / src / headers / mem_op.h
1 /* @(#) $Id$ */
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 2) 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_AddPtArray(void *pt, void **array);
20 char **os_AddStrArray(char *str, char **array);
21 void os_FreeArray(char *ch1, char **ch2);
22 int os_IsStrOnArray(char *str, char **array);
23 char *os_LoadString(char *at, char *str);
24
25 #endif