18 lines
357 B
C
18 lines
357 B
C
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||
|
/*
|
||
|
* Copyright (c) 2023 Solidigm.
|
||
|
*
|
||
|
* Authors: karl.dedow@solidigm.com
|
||
|
*/
|
||
|
|
||
|
#ifndef SOLIDIGM_LOG_PAGE_DIRECTORY_H
|
||
|
#define SOLIDIGM_LOG_PAGE_DIRECTORY_H
|
||
|
|
||
|
struct command;
|
||
|
struct plugin;
|
||
|
|
||
|
int solidigm_get_log_page_directory_log(int argc, char **argv, struct command *cmd,
|
||
|
struct plugin *plugin);
|
||
|
|
||
|
#endif
|