data_types.c
changeset 29 7abf6146898e
parent 27 81a574d60c15
child 77 49e0babccb23
equal deleted inserted replaced
28:54addf5893ef 29:7abf6146898e
     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 
       
    14 typedef signed char SCHAR;
    13 typedef signed char SCHAR;
    15 
       
    16 typedef unsigned short USHORT;
    14 typedef unsigned short USHORT;
    17 
       
    18 typedef signed short SSHORT;
    15 typedef signed short SSHORT;
    19 
       
    20 typedef unsigned int UINT;
    16 typedef unsigned int UINT;
    21 
       
    22 typedef signed int SINT;
    17 typedef signed int SINT;
    23 
       
    24 typedef unsigned long ULONG;
    18 typedef unsigned long ULONG;
    25 
       
    26 typedef signed long SLONG;
    19 typedef signed long SLONG;
    27 
    20 
    28 #ifdef __USE_ISOC99
    21 #ifdef __USE_ISOC99
    29 typedef unsigned long long ULLONG;
    22 typedef unsigned long long ULLONG;
    30 
    23