52 lines
1.7 KiB
C
52 lines
1.7 KiB
C
#pragma once
|
|
#include <gc/cord.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#include "types.h"
|
|
|
|
#define Int64_t int64_t
|
|
#define Int32_t int32_t
|
|
#define Int16_t int16_t
|
|
#define Int8_t int8_t
|
|
#define Int_t int64_t
|
|
#define I64(x) ((int64_t)x)
|
|
#define I32(x) ((int32_t)x)
|
|
#define I16(x) ((int16_t)x)
|
|
#define I8(x) ((int8_t)x)
|
|
|
|
#define DEFINE_INT_TYPE(c_type, type_name) \
|
|
CORD type_name ## __as_str(const c_type *i, bool colorize, const TypeInfo *type); \
|
|
int32_t type_name ## __compare(const c_type *x, const c_type *y, const TypeInfo *type); \
|
|
CORD type_name ## __format(c_type i, int64_t digits); \
|
|
CORD type_name ## __hex(c_type i, int64_t digits, bool uppercase, bool prefix); \
|
|
CORD type_name ## __octal(c_type i, int64_t digits, bool prefix); \
|
|
c_type type_name ## __random(int64_t min, int64_t max); \
|
|
typedef struct { \
|
|
TypeInfo type; \
|
|
c_type min, max; \
|
|
c_type (*abs)(c_type i); \
|
|
CORD (*format)(c_type i, int64_t digits); \
|
|
CORD (*hex)(c_type i, int64_t digits, bool uppercase, bool prefix); \
|
|
CORD (*octal)(c_type i, int64_t digits, bool prefix); \
|
|
c_type (*random)(int64_t min, int64_t max); \
|
|
} type_name##_namespace_t; \
|
|
extern type_name##_namespace_t type_name;
|
|
|
|
DEFINE_INT_TYPE(int64_t, Int64);
|
|
DEFINE_INT_TYPE(int32_t, Int32);
|
|
DEFINE_INT_TYPE(int16_t, Int16);
|
|
DEFINE_INT_TYPE(int8_t, Int8);
|
|
#undef DEFINE_INT_TYPE
|
|
|
|
#define Int__as_str Int64__as_str
|
|
#define Int__compare Int64__compare
|
|
#define Int__format Int64__format
|
|
#define Int__hex Int64__hex
|
|
#define Int__octal Int64__octal
|
|
#define Int__random Int64__random
|
|
#define Int_namespace_t Int64_namespace_t
|
|
#define Int Int64
|
|
|
|
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0
|