File: libnvme.h

package info (click to toggle)
libnvme 1.16.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 8,020 kB
  • sloc: ansic: 35,812; perl: 1,834; sh: 475; python: 194; cpp: 64; makefile: 55
file content (31 lines) | stat: -rw-r--r-- 609 bytes parent folder | download | duplicates (3)
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 */