swanctl: Add missing header guards for load commands

This commit is contained in:
Tobias Brunner
2020-01-28 15:29:40 +01:00
parent 91c6387e69
commit 73ee7b6664
4 changed files with 20 additions and 0 deletions
+5
View File
@@ -13,6 +13,9 @@
* for more details.
*/
#ifndef LOAD_AUTHORITIES_H_
#define LOAD_AUTHORITIES_H_
#include "command.h"
/**
@@ -24,3 +27,5 @@
*/
int load_authorities_cfg(vici_conn_t *conn, command_format_options_t format,
settings_t *cfg);
#endif /** LOAD_AUTHORITIES_H_ */
+5
View File
@@ -13,6 +13,9 @@
* for more details.
*/
#ifndef LOAD_CONNS_H_
#define LOAD_CONNS_H_
#include "command.h"
/**
@@ -24,3 +27,5 @@
*/
int load_conns_cfg(vici_conn_t *conn, command_format_options_t format,
settings_t *cfg);
#endif /** LOAD_CONNS_H_ */
+5
View File
@@ -13,6 +13,9 @@
* for more details.
*/
#ifndef LOAD_CREDS_H_
#define LOAD_CREDS_H_
#include "command.h"
/**
@@ -26,3 +29,5 @@
*/
int load_creds_cfg(vici_conn_t *conn, command_format_options_t format,
settings_t *cfg, bool clear, bool noprompt);
#endif /** LOAD_CREDS_H_ */
+5
View File
@@ -13,6 +13,9 @@
* for more details.
*/
#ifndef LOAD_POOLS_H_
#define LOAD_POOLS_H_
#include "command.h"
/**
@@ -24,3 +27,5 @@
*/
int load_pools_cfg(vici_conn_t *conn, command_format_options_t format,
settings_t *cfg);
#endif /** LOAD_POOLS_H_ */