Type Definitions

Summary
Type Definitions
Types
string_qThe queue of strings.
three_stringsThe array of three strings.
fg_color_eThe enumerated type of foreground colors.
bg_color_eThe enumerated type of background colors.

Types

string_q

typedef string string_q[$]

The queue of strings.

three_strings

typedef string three_strings[3]

The array of three strings.

fg_color_e

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 foreground colors.

bg_color_e

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

The enumerated type of background colors.

typedef string string_q[$]
The queue of strings.
typedef string three_strings[3]
The array of three strings.
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 foreground 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
The enumerated type of background colors.