initial commit
This commit is contained in:
commit
9d20827c46
2469 changed files with 470994 additions and 0 deletions
15
iris-legacy/iris/libidn/qint.h
Normal file
15
iris-legacy/iris/libidn/qint.h
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
// simple stdint.h-style replacement without any conflicts
|
||||
|
||||
#ifndef QINT_H
|
||||
#define QINT_H
|
||||
|
||||
typedef unsigned char my_uint8_t;
|
||||
typedef unsigned short int my_uint16_t;
|
||||
typedef unsigned int my_uint32_t;
|
||||
|
||||
typedef char my_int8_t;
|
||||
typedef short int my_int16_t;
|
||||
typedef int my_int32_t;
|
||||
|
||||
#endif
|
||||
|
||||
Reference in a new issue