| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #pragma once
- #include "stdio.h"
- #include "stdlib.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifdef __cplusplus
- #define PK_INLINE inline
- #else
- #define PK_INLINE static inline
- #endif
- #define PK_REGION(name) 1
- #define PK_SLICE_LOOP(i, start, stop, step) \
- for(int i = start; step > 0 ? i < stop : i > stop; i += step)
- // global constants
- #define PK_HEX_TABLE "0123456789abcdef"
- #ifdef _MSC_VER
- #define c11__unreachedable() __assume(0)
- #else
- #define c11__unreachedable() __builtin_unreachable()
- #endif
- #define c11__abort(...) \
- do { \
- fprintf(stderr, __VA_ARGS__); \
- putchar('\n'); \
- abort(); \
- } while(0)
- #define c11__min(a, b) ((a) < (b) ? (a) : (b))
- #define c11__max(a, b) ((a) > (b) ? (a) : (b))
- #define c11__count_array(a) (sizeof(a) / sizeof(a[0]))
- // NARGS
- #define PK_NARGS_SEQ(_1, _2, _3, _4, N, ...) N
- #define PK_NARGS(...) PK_NARGS_SEQ(__VA_ARGS__, 4, 3, 2, 1, 0)
- #define PK_NPTRS(...) PK_NARGS_SEQ(__VA_ARGS__, int****, int***, int**, int*, int)
- // ref counting
- typedef struct RefCounted {
- int count;
- void (*dtor)(void*);
- } RefCounted;
- #define PK_INCREF(obj) (obj)->rc.count++
- #define PK_DECREF(obj) \
- do { \
- if(--(obj)->rc.count == 0) { \
- (obj)->rc.dtor(obj); \
- free(obj); \
- } \
- } while(0)
- #ifdef __cplusplus
- }
- #endif
|