Relicense BabelTrace library to MIT (BSD-style)
[babeltrace.git] / formats / ctf / types / struct.c
CommitLineData
6dc2ca62
MD
1/*
2 * Common Trace Format
3 *
11796b96 4 * Structure format access functions.
6dc2ca62 5 *
ccd7e1c8 6 * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6dc2ca62 7 *
ccd7e1c8
MD
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
de0ba614 14 *
ccd7e1c8
MD
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
6dc2ca62
MD
17 */
18
d79865b9 19#include <babeltrace/ctf/types.h>
6dc2ca62 20
11796b96
MD
21void ctf_struct_begin(struct stream_pos *pos,
22 const struct type_class_struct *struct_class)
23{
24 align_pos(pos, struct_class->p.alignment);
25}
6dc2ca62 26
11796b96
MD
27void ctf_struct_end(struct stream_pos *pos,
28 const struct type_class_struct *struct_class)
29{
30}
This page took 0.024307 seconds and 4 git commands to generate.