blob: 35b7b7f82754e7e9911b3017ea446743daad8b0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include "output.h"
#include "thresholds.h"
typedef struct check_users_config {
mp_thresholds thresholds;
bool output_format_is_set;
mp_output_format output_format;
} check_users_config;
check_users_config check_users_config_init() {
check_users_config tmp = {
.thresholds = mp_thresholds_init(),
.output_format_is_set = false,
};
return tmp;
}
|