blob: f0b1a91695ac1fb163a521acf4848b4741925a4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// SPDX-License-Identifier: LGPL-2.1-or-later
/*
* This file is part of libnvme.
* Copyright (c) 2021 Code Construct Pty Ltd
*
* Authors: Jeremy Kerr <jk@codeconstruct.com.au>
*/
#ifndef _LIBNVME_MI_H
#define _LIBNVME_MI_H
#ifdef __cplusplus
extern "C" {
#endif
#include "nvme/types.h"
#include "nvme/mi.h"
#include "nvme/log.h"
#ifdef __cplusplus
}
#endif
#endif /* _LIBNVME_MI_H */
|