monitoring-plugins/plugins/check_ide_smart.d/config.h
2025-03-17 13:52:40 +01:00

15 lines
237 B
C

#pragma once
#include "../../config.h"
#include <stddef.h>
typedef struct {
char *device;
} check_ide_smart_config;
check_ide_smart_config check_ide_smart_init() {
check_ide_smart_config tmp = {
.device = NULL,
};
return tmp;
}