Last change
on this file since 7f5fa1b was f7428b1, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Started to rework include files.
|
-
Property mode
set to
100644
|
File size:
428 bytes
|
Rev | Line | |
---|
[f7428b1] | 1 | /*
|
---|
| 2 | =============================================================================
|
---|
| 3 | stdint.h -- fixed-size integer types
|
---|
| 4 | Version 1 -- 2017-07-10 -- Thomas Lopatic
|
---|
| 5 | =============================================================================
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #pragma once
|
---|
| 9 |
|
---|
| 10 | typedef char int8_t;
|
---|
| 11 | typedef unsigned char uint8_t;
|
---|
| 12 |
|
---|
| 13 | typedef short int16_t;
|
---|
| 14 | typedef unsigned short uint16_t;
|
---|
| 15 |
|
---|
| 16 | typedef long int32_t;
|
---|
| 17 | typedef unsigned long uint32_t;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.