This repository has been archived on 2025-12-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
yachat/iris-legacy/iris/libidn/qint.h

16 lines
342 B
C
Raw Permalink Normal View History

2025-12-25 01:37:49 +05:00
// 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