[refactor] Organize INT
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
// Signed integers
|
||||
#define SSINT8 int8_t
|
||||
#define SSINT16 int16_t
|
||||
#define SSINT32 int32_t
|
||||
#define SSINT64 int64_t
|
||||
|
||||
// Unsigned integers
|
||||
#define SUINT8 uint8_t
|
||||
#define SUINT16 uint16_t
|
||||
#define SUINT32 uint32_t
|
||||
#define SUINT64 uint64_t
|
||||
Reference in New Issue
Block a user