summaryrefslogtreecommitdiff
path: root/utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/memchunk.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/memchunk.h')
-rwxr-xr-xutils/zenutils/libraries/beecrypt-4.1.2/beecrypt/memchunk.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/memchunk.h b/utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/memchunk.h
new file mode 100755
index 0000000000..4778b7ca89
--- /dev/null
+++ b/utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/memchunk.h
@@ -0,0 +1,53 @@
1/*
2 * Copyright (c) 2001 Virtual Unlimited B.V.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19/*!\file memchunk.h
20 * \author Bob Deblier <bob.deblier@pandora.be>
21 */
22
23#ifndef _MEMCHUNK_H
24#define _MEMCHUNK_H
25
26#include "beecrypt/api.h"
27
28typedef struct
29{
30 size_t size;
31 byte* data;
32} memchunk;
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
38BEECRYPTAPI
39memchunk* memchunkAlloc(size_t);
40BEECRYPTAPI
41void memchunkWipe(memchunk*);
42BEECRYPTAPI
43void memchunkFree(memchunk*);
44BEECRYPTAPI
45memchunk* memchunkResize(memchunk*, size_t);
46BEECRYPTAPI
47memchunk* memchunkClone(const memchunk*);
48
49#ifdef __cplusplus
50}
51#endif
52
53#endif