File indexing completed on 2024-05-19 04:06:43

0001 /* simple stdint.h-style replacement without any conflicts */
0002 
0003 #ifndef QINT_H
0004 #define QINT_H
0005 
0006 typedef unsigned char       my_uint8_t;
0007 typedef unsigned short int  my_uint16_t;
0008 typedef unsigned int        my_uint32_t;
0009 
0010 typedef char                    my_int8_t;
0011 typedef short int               my_int16_t;
0012 typedef int                     my_int32_t;
0013 
0014 #endif
0015