Clang-format a few files to make CI happy
[collectd.git] / src / liboconfig / aux_types.h
1 #ifndef AUX_TYPES_H
2 #define AUX_TYPES_H 1
3
4 struct statement_list_s {
5   oconfig_item_t *statement;
6   int statement_num;
7 };
8 typedef struct statement_list_s statement_list_t;
9
10 struct argument_list_s {
11   oconfig_value_t *argument;
12   int argument_num;
13 };
14 typedef struct argument_list_s argument_list_t;
15
16 #endif /* AUX_TYPES_H */