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