data_types.c
changeset 27 81a574d60c15
parent 9 c3fecc82ade6
child 29 7abf6146898e
equal deleted inserted replaced
26:d227047a3e88 27:81a574d60c15
     8 #include <math.h>
     8 #include <math.h>
     9 #include <limits.h>
     9 #include <limits.h>
    10 #include <float.h>
    10 #include <float.h>
    11 
    11 
    12 typedef unsigned char UCHAR;
    12 typedef unsigned char UCHAR;
       
    13 
    13 typedef signed char SCHAR;
    14 typedef signed char SCHAR;
    14 
    15 
    15 typedef unsigned short USHORT;
    16 typedef unsigned short USHORT;
       
    17 
    16 typedef signed short SSHORT;
    18 typedef signed short SSHORT;
    17 
    19 
    18 typedef unsigned int UINT;
    20 typedef unsigned int UINT;
       
    21 
    19 typedef signed int SINT;
    22 typedef signed int SINT;
    20 
    23 
    21 typedef unsigned long ULONG;
    24 typedef unsigned long ULONG;
       
    25 
    22 typedef signed long SLONG;
    26 typedef signed long SLONG;
    23 
    27 
    24 #ifdef __USE_ISOC99
    28 #ifdef __USE_ISOC99
    25 typedef unsigned long long ULLONG;
    29 typedef unsigned long long ULLONG;
       
    30 
    26 typedef signed long long SLLONG;
    31 typedef signed long long SLLONG;
    27 #endif
    32 #endif
    28 
    33 
    29 int main (int argc, char **argv)
    34 int main (int argc, char **argv)
    30 {
    35 {