mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-02-16 09:09:01 -05:00
15 lines
237 B
C
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;
|
|
}
|