Remove some unused includes in C++ files
[babeltrace.git] / src / plugins / ctf / common / metadata / objstack.hpp
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2013 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * Common Trace Format Object Stack.
7 */
8
9 #ifndef _OBJSTACK_H
10 #define _OBJSTACK_H
11
12 struct objstack *objstack_create(void);
13 void objstack_destroy(struct objstack *objstack);
14
15 /*
16 * Allocate len bytes of zeroed memory.
17 * Return NULL on error.
18 */
19 void *objstack_alloc(struct objstack *objstack, size_t len);
20
21 #endif /* _OBJSTACK_H */
This page took 0.030447 seconds and 4 git commands to generate.