blob: 2c7fe3a339e3ccd80e603c9ec292f05fce587bcc (
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
25
26
27
28
29
30
31
|
// SPDX-License-Identifier: LGPL-2.1-or-later
/*
* This file is part of libnvme.
* Copyright (c) 2020 Western Digital Corporation or its affiliates.
*
* Authors: Keith Busch <keith.busch@wdc.com>
* Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
*/
#ifndef _LIBNVME_H
#define _LIBNVME_H
#ifdef __cplusplus
extern "C" {
#endif
#include "nvme/types.h"
#include "nvme/linux.h"
#include "nvme/ioctl.h"
#include "nvme/nbft.h"
#include "nvme/fabrics.h"
#include "nvme/filters.h"
#include "nvme/tree.h"
#include "nvme/util.h"
#include "nvme/log.h"
#ifdef __cplusplus
}
#endif
#endif /* _LIBNVME_H */
|