| Type Definitions | |
| Types | |
| string_q | The queue of strings. |
| three_strings | The array of three strings. |
| fg_color_e | The enumerated type of foreground colors. |
| bg_color_e | The enumerated type of background colors. |
The queue of strings.
typedef string string_q[$]
The array of three strings.
typedef string three_strings[3]
The enumerated type of foreground colors.
typedef enum { FG_BLACK = 30, FG_RED = 31, FG_GREEN = 32, FG_YELLOW = 33, FG_BLUE = 34, FG_MAGENTA = 35, FG_CYAN = 36, FG_WHITE = 37 } fg_color_e
The enumerated type of background colors.
typedef enum { BG_BLACK = 40, BG_RED = 41, BG_GREEN = 42, BG_YELLOW = 43, BG_BLUE = 44, BG_MAGENTA = 45, BG_CYAN = 46, BG_WHITE = 47 } bg_color_e