25 lines
363 B
C
25 lines
363 B
C
|
/* SPDX-License-Identifier: BSD-3-Clause
|
||
|
* Copyright (c) Intel Corporation.
|
||
|
* All rights reserved.
|
||
|
*/
|
||
|
|
||
|
#ifndef SPDK_FTL_H
|
||
|
#define SPDK_FTL_H
|
||
|
|
||
|
#include "spdk/stdinc.h"
|
||
|
#include "spdk/uuid.h"
|
||
|
#include "spdk/thread.h"
|
||
|
#include "spdk/bdev.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
struct spdk_ftl_dev;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* SPDK_FTL_H */
|