1 //
2 //  elements.h
3 //  libmsym
4 //
5 //  Created by Marcus Johansson on 17/02/15.
6 //  Copyright (c) 2015 Marcus Johansson.
7 //
8 //  Distributed under the MIT License ( See LICENSE file or copy at http://opensource.org/licenses/MIT )
9 //
10 
11 #ifndef __MSYM__ELEMENTS_h
12 #define __MSYM__ELEMENTS_h
13 
14 #include <stdio.h>
15 
16 #include "msym.h"
17 
18 void printElement(msym_element_t *element);
19 msym_error_t complementElementData(msym_element_t *element);
20 
21 #endif /* defined(__MSYM__ELEMENTS_h) */
22