mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-06-09 00:32:05 -04:00
19 lines
333 B
C
19 lines
333 B
C
#pragma once
|
|
|
|
#include "../../config.h"
|
|
#include <stddef.h>
|
|
|
|
typedef struct {
|
|
char *status_log;
|
|
char *process_string;
|
|
int expire_minutes;
|
|
} check_nagios_config;
|
|
|
|
check_nagios_config check_nagios_config_init() {
|
|
check_nagios_config tmp = {
|
|
.status_log = NULL,
|
|
.process_string = NULL,
|
|
.expire_minutes = 0,
|
|
};
|
|
return tmp;
|
|
}
|