Moep Library  2.0-nc
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Groups
types.h
1 /*
2  * Copyright 2013, 2014 Maurice Leclaire <leclaire@in.tum.de>
3  * Stephan M. Guenther <moepi@moepi.net>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * See COPYING for more details.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 #ifndef __MOEP80211_TYPES_H
21 #define __MOEP80211_TYPES_H
22 
23 #include <stdint.h>
24 
25 
26 typedef int8_t s8;
27 typedef int16_t s16;
28 typedef int32_t s32;
29 typedef int64_t s64;
30 
31 typedef uint8_t u8;
32 typedef uint16_t u16;
33 typedef uint32_t u32;
34 typedef uint64_t u64;
35 
36 #endif /* __MOEP80211_TYPES_H */