TacOS  0.2
 Tout Structures de données Fichiers Fonctions Variables Définitions de type Énumérations Macros
stdint.h
Aller à la documentation de ce fichier.
1 
30 #ifndef _STDINT_H_
31 #define _STDINT_H_
32 
33 #include <sys/cdefs.h>
34 
35 __BEGIN_DECLS
36 
37 #ifndef _TYPES_INTX_T_
38 #define _TYPES_INTX_T_
39 typedef signed char int8_t;
40 typedef short int int16_t;
41 typedef long int int32_t;
42 typedef long long int int64_t;
43 #endif
44 
45 #ifndef _TYPES_UINTX_T_
46 #define _TYPES_UINTX_T_
47 typedef unsigned char uint8_t;
48 typedef unsigned short int uint16_t;
49 typedef unsigned long int uint32_t;
50 typedef unsigned long long int uint64_t;
51 #endif
52 
53 __END_DECLS
54 
55 #endif
unsigned long long int uint64_t
Definition: stdint.h:50
unsigned long int uint32_t
Definition: stdint.h:49
unsigned short int uint16_t
Definition: stdint.h:48
unsigned char uint8_t
Definition: stdint.h:47
long long int int64_t
Definition: stdint.h:42
signed char int8_t
Definition: stdint.h:39
long int int32_t
Definition: stdint.h:41
short int int16_t
Definition: stdint.h:40