Example #1
0
void ucs_global_opts_print(FILE *stream, ucs_config_print_flags_t print_flags)
{
    ucs_config_parser_print_opts(stream, "Global configuration", &ucs_global_opts,
                                 ucs_global_opts_table, NULL, print_flags);
}
Example #2
0
void ucp_config_print(const ucp_config_t *config, FILE *stream,
                      const char *title, ucs_config_print_flags_t print_flags)
{
    ucs_config_parser_print_opts(stream, title, config, ucp_config_table, NULL,
                                 print_flags);
}
Example #3
0
void ucs_global_opts_print(FILE *stream, const char *title,
                           ucs_config_print_flags_t print_flags)
{
    ucs_config_parser_print_opts(stream, title, &ucs_global_opts,
                                 ucs_global_opts_table, NULL, print_flags);
}