/* * Copyright 2018 Oticon A/S * * SPDX-License-Identifier: Apache-2.0 */ #ifndef BS_TIME_MON_ARGS_H #define BS_TIME_MON_ARGS_H #include "bs_types.h" #include "bs_cmd_line.h" #include "bs_cmd_line_typical.h" #ifdef __cplusplus extern "C" { #endif typedef struct { BS_BASIC_DEVICE_OPTIONS_FIELDS bs_time_t interval; } time_monitor_args_t; void bs_time_monitor_argparse(int argc, char *argv[], time_monitor_args_t *args); #ifdef __cplusplus } #endif #endif