source: CIVL/include/impls/stdint.cvl@ 1aaefd4

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
RevLine 
[89ef02d]1#include <civlc.cvh>
2#include <stdint.h>
[84d0c30]3
[89ef02d]4typedef unsigned char uint8_t;
5typedef unsigned int uint16_t;
6typedef unsigned long int uint32_t;
7typedef unsigned long long uint64_t;
[84d0c30]8
9
[89ef02d]10typedef signed char int_least8_t;
11typedef signed int int_least16_t;
12typedef signed long int int_least32_t;
13typedef signed long long int_least64_t;
14typedef unsigned char uint_least8_t;
15typedef unsigned int uint_least16_t;
16typedef unsigned long int uint_least32_t;
17typedef unsigned long long uint_least64_t;
[84d0c30]18
19
[89ef02d]20typedef signed char int_fast8_t;
21typedef signed int int_fast16_t;
22typedef signed long int int_fast32_t;
23typedef signed long long int_fast64_t;
24typedef unsigned char uint_fast8_t;
25typedef unsigned int uint_fast16_t;
26typedef unsigned long int uint_fast32_t;
27typedef unsigned long long uint_fast64_t;
[84d0c30]28
29
30typedef long long intmax_t;
[89ef02d]31typedef unsigned long long uintmax_t;
Note: See TracBrowser for help on using the repository browser.