Common C type definitions
- 22 Jan 2025
- 1 Minute à lire
- SombreLumière
- PDF
Common C type definitions
- Mis à jour le 22 Jan 2025
- 1 Minute à lire
- SombreLumière
- PDF
The content is currently unavailable in French. You are viewing the default English version.
Résumé de l’article
Avez-vous trouvé ce résumé utile ?
Merci pour vos commentaires
To better indicate their use and ensure code portability, some common C types have been redefined.
typedef char aat_ascii;
typedef unsigned char aat_byte;
typedef short int aat_int16;
typedef long int aat_int32;
typedef unsigned short int aat_uint16;
typedef unsigned long int aat_word32;
typedef short int aat_bool;
enum aat_bool
{
aat_false False=0,
aat_true True=1
};
In 64-bit applications, the definitions of aat_int32 and aat_word32 are different:
typedef int aat_int32;
typedef unsigned int aat_word32;
Cet article vous a-t-il été utile ?