diff options
Diffstat (limited to 'docs/u8c_col.3')
-rw-r--r-- | docs/u8c_col.3 | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/docs/u8c_col.3 b/docs/u8c_col.3 index b0fb658..784a67d 100644 --- a/docs/u8c_col.3 +++ b/docs/u8c_col.3 @@ -6,28 +6,29 @@ u8c_col - Colour - Set of macros expanding to hexadecimal colour value expressio .PP .nf \f[C] +/* # include <u8c/fmt.h> */ # include <stdint.h> -# define u8c_col_azure (UINT32_C(0x3DA9E1)) -# define u8c_col_ash (UINT32_C(0xD2D2CC)) -# define u8c_col_black (UINT32_C(0x444747)) -# define u8c_col_blue (UINT32_C(0x3D3DE1)) -# define u8c_col_chartreuse (UINT32_C(0xA9E13D)) -# define u8c_col_cyan (UINT32_C(0x3DE1E1)) -# define u8c_col_green (UINT32_C(0x3ED13D)) -# define u8c_col_magenta (UINT32_C(0xE13DE1)) -# define u8c_col_mint (UINT32_C(0x3DE1A9)) -# define u8c_col_orange (UINT32_C(0xE1A93D)) -# define u8c_col_red (UINT32_C(0xE13D3D)) -# define u8c_col_rose (UINT32_C(0xE13DA9)) -# define u8c_col_silver (UINT32_C(0x9CA1A1)) -# define u8c_col_violet (UINT32_C(0xA93dE1)) -# define u8c_col_white (UINT32_C(0xF8F8F1)) -# define u8c_col_yellow (UINT32_C(0xE1E13D)) +static uint_least32_t const u8c_col_azure = UINT32_C(0x3DA9E1); +static uint_least32_t const u8c_col_ash = UINT32_C(0xD2D2CC); +static uint_least32_t const u8c_col_black = UINT32_C(0x444747); +static uint_least32_t const u8c_col_blue = UINT32_C(0x3D3DE1); +static uint_least32_t const u8c_col_chartreuse = UINT32_C(0xA9E13D); +static uint_least32_t const u8c_col_cyan = UINT32_C(0x3DE1E1); +static uint_least32_t const u8c_col_green = UINT32_C(0x3ED13D); +static uint_least32_t const u8c_col_magenta = UINT32_C(0xE13DE1); +static uint_least32_t const u8c_col_mint = UINT32_C(0x3DE1A9); +static uint_least32_t const u8c_col_orange = UINT32_C(0xE1A93D); +static uint_least32_t const u8c_col_red = UINT32_C(0xE13D3D); +static uint_least32_t const u8c_col_rose = UINT32_C(0xE13DA9); +static uint_least32_t const u8c_col_silver = UINT32_C(0x9CA1A1); +static uint_least32_t const u8c_col_violet = UINT32_C(0xA93dE1); +static uint_least32_t const u8c_col_white = UINT32_C(0xF8F8F1); +static uint_least32_t const u8c_col_yellow = UINT32_C(0xE1E13D); \f[R] .fi .SH DESCRIPTION .PP -The macro set \f[B]u8c_col\f[R] contains sixteen macros expanding to hexadecimal colour value expressions of type \f[B]uint_least32_t\f[R]. +The constant set \f[B]u8c_col\f[R] contains sixteen constants with colour values. .SH VERSION .PP u8c 2 |