diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-03-27 17:26:51 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-03-27 17:26:51 -0400 |
| commit | 3c52a756339a2d96824d21a7d3ad5de7fc1085a0 (patch) | |
| tree | e5299a25ebb76186d6372b700710d7c8c7fe0728 /src/stdlib/datatypes.h | |
| parent | 2186e84de0c0fd47ba48eaa35f74ea2754c3b81f (diff) | |
Deprecate custom printf specifiers in favor of print() function that
uses _Generic() to generically convert any value to a string or print as
a string.
Diffstat (limited to 'src/stdlib/datatypes.h')
| -rw-r--r-- | src/stdlib/datatypes.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdlib/datatypes.h b/src/stdlib/datatypes.h index b81ff741..40b4712a 100644 --- a/src/stdlib/datatypes.h +++ b/src/stdlib/datatypes.h @@ -34,6 +34,8 @@ typedef union { mpz_t *big; } Int_t; +#define OptionalInt_t Int_t + typedef struct { void *data; // All of the following fields add up to 64 bits, which means that array @@ -117,4 +119,10 @@ typedef struct MutexedData_s { void *data; } *MutexedData_t; +#define OptionalBool_t uint8_t +#define OptionalArray_t Array_t +#define OptionalTable_t Table_t +#define OptionalText_t Text_t +#define OptionalClosure_t Closure_t + // vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0 |
