SyterKit
0.4.0.x
SyterKit is a bare-metal framework
Loading...
Searching...
No Matches
utils
bl33_t527
include
stdint.h
Go to the documentation of this file.
1
#ifndef __STDINT_H__
2
#define __STDINT_H__
3
4
#ifdef __cplusplus
5
extern
"C"
{
6
#endif
7
8
#include <
types.h
>
9
10
typedef
s8_t
int8_t
;
11
typedef
u8_t
uint8_t
;
12
13
typedef
s16_t
int16_t
;
14
typedef
u16_t
uint16_t
;
15
16
typedef
s32_t
int32_t
;
17
typedef
u32_t
uint32_t
;
18
19
typedef
s64_t
int64_t
;
20
typedef
u64_t
uint64_t
;
21
22
#define UINT8_MAX (0xff)
23
#define UINT16_MAX (0xffff)
24
#define UINT32_MAX (0xffffffff)
25
#define UINT64_MAX (0xffffffffffffffffULL)
26
27
#ifdef __cplusplus
28
}
29
#endif
30
31
#endif
/* __STDINT_H__ */
int64_t
s64_t int64_t
Definition
stdint.h:15
uint64_t
u64_t uint64_t
Definition
stdint.h:16
uint32_t
u32_t uint32_t
Definition
stdint.h:13
int16_t
s16_t int16_t
Definition
stdint.h:9
int8_t
s8_t int8_t
Definition
stdint.h:6
int32_t
s32_t int32_t
Definition
stdint.h:12
uint8_t
u8_t uint8_t
Definition
stdint.h:7
uint16_t
u16_t uint16_t
Definition
stdint.h:10
u32_t
unsigned int u32_t
Definition
types.h:11
u64_t
unsigned long long u64_t
Definition
types.h:14
s16_t
signed short s16_t
Definition
types.h:7
s64_t
signed long long s64_t
Definition
types.h:13
s8_t
signed char s8_t
Definition
types.h:4
u8_t
unsigned char u8_t
Definition
types.h:5
s32_t
signed int s32_t
Definition
types.h:10
u16_t
unsigned short u16_t
Definition
types.h:8
types.h
Generated by
1.9.8