Cthulhu  0.2.10
Cthulhu compiler collection
format.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include "core/compiler.h"
6 
8 
9 typedef struct arena_t arena_t;
10 typedef struct io_t io_t;
11 typedef struct colour_pallete_t colour_pallete_t;
12 
15 
17 typedef enum fmt_heading_t
18 {
19 #define FMT_HEADING(id, name) id,
20 #include "format/format.inc"
21 
24 
26 
27 #if CT_OS_WINDOWS
28 # define CT_DEFAULT_HEADER_STYLE eHeadingMicrosoft
29 #else
30 # define CT_DEFAULT_HEADER_STYLE eHeadingGeneric
31 #endif
32 
34 typedef struct fmt_options_t
35 {
38 
40  io_t *io;
41 
45 
47 
49 
fmt_heading_t heading_style_t
Definition: format.h:25
fmt_options_t print_options_t
Definition: format.h:46
#define CT_BEGIN_API
Definition: compiler.h:129
#define CT_END_API
Definition: compiler.h:130
fmt_heading_t
line heading style
Definition: format.h:18
@ eHeadingCount
Definition: format.h:22
an allocator object
Definition: arena.h:86
a colour pallete
Definition: colour.h:39
generic print options
Definition: format.h:35
const colour_pallete_t * pallete
colour pallete to use
Definition: format.h:43
arena_t * arena
temporary arena
Definition: format.h:37
io_t * io
io buffer
Definition: format.h:40
io object implementation
Definition: impl.h:122