Cthulhu  0.2.10
Cthulhu compiler collection
config.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include <ctu_format_api.h>
6 
7 #include "core/analyze.h"
8 
9 #include "format/format.h"
10 
11 #include <stdbool.h>
12 
14 
15 typedef struct cfg_group_t cfg_group_t;
16 
18 typedef struct print_config_t
19 {
22 
25 
29  bool win_style;
30 
33  const char *name;
35 
40 CT_FORMAT_API void print_config(print_config_t print, IN_NOTNULL const cfg_group_t *config);
41 
#define IN_NOTNULL
annotate a parameter as not being null
#define CT_BEGIN_API
Definition: compiler.h:129
#define CT_END_API
Definition: compiler.h:130
generic print options
Definition: format.h:35
config format options
Definition: config.h:19
const char * name
command line name of this program
Definition: config.h:33
print_options_t options
generic print options
Definition: config.h:21
bool print_usage
should the command line usage header be printed
Definition: config.h:24
bool win_style
which platform to format for if true, all flags will be formatted with a leading slash if false,...
Definition: config.h:29
CT_FORMAT_API void print_config(print_config_t print, const cfg_group_t *config)
print a configuration object
Definition: config.c:463