forked from linux-nvme/nvme-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibnvme.h
More file actions
34 lines (29 loc) · 688 Bytes
/
libnvme.h
File metadata and controls
34 lines (29 loc) · 688 Bytes
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
32
33
34
// 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 <[email protected]>
* Chaitanya Kulkarni <[email protected]>
*/
#ifndef _LIBNVME_H
#define _LIBNVME_H
#ifdef __cplusplus
extern "C" {
#endif
#include <nvme/cmds.h>
#include <nvme/fabrics.h>
#include <nvme/filters.h>
#include <nvme/ioctl.h>
#include <nvme/lib-types.h>
#include <nvme/lib.h>
#include <nvme/linux.h>
#include <nvme/nbft.h>
#include <nvme/tree.h>
#include <nvme/types.h>
#include <nvme/util.h>
#include <nvme/accessors.h>
#ifdef __cplusplus
}
#endif
#endif /* _LIBNVME_H */