initial commit

This commit is contained in:
mikhail "synzr" 2025-12-25 01:37:49 +05:00
commit 9d20827c46
2469 changed files with 470994 additions and 0 deletions

View 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