main
test-branch
|
Last change
on this file since 1aaefd4 was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago |
|
Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.
git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c
|
-
Property mode
set to
100644
|
|
File size:
1.0 KB
|
| Line | |
|---|
| 1 | #include <civlc.cvh>
|
|---|
| 2 | #include <stdint.h>
|
|---|
| 3 |
|
|---|
| 4 | typedef unsigned char uint8_t;
|
|---|
| 5 | typedef unsigned int uint16_t;
|
|---|
| 6 | typedef unsigned long int uint32_t;
|
|---|
| 7 | typedef unsigned long long uint64_t;
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 | typedef signed char int_least8_t;
|
|---|
| 11 | typedef signed int int_least16_t;
|
|---|
| 12 | typedef signed long int int_least32_t;
|
|---|
| 13 | typedef signed long long int_least64_t;
|
|---|
| 14 | typedef unsigned char uint_least8_t;
|
|---|
| 15 | typedef unsigned int uint_least16_t;
|
|---|
| 16 | typedef unsigned long int uint_least32_t;
|
|---|
| 17 | typedef unsigned long long uint_least64_t;
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 | typedef signed char int_fast8_t;
|
|---|
| 21 | typedef signed int int_fast16_t;
|
|---|
| 22 | typedef signed long int int_fast32_t;
|
|---|
| 23 | typedef signed long long int_fast64_t;
|
|---|
| 24 | typedef unsigned char uint_fast8_t;
|
|---|
| 25 | typedef unsigned int uint_fast16_t;
|
|---|
| 26 | typedef unsigned long int uint_fast32_t;
|
|---|
| 27 | typedef unsigned long long uint_fast64_t;
|
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 | typedef long long intmax_t;
|
|---|
| 31 | typedef unsigned long long uintmax_t;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.