cctools
nvpair_private.h
1/*
2Copyright (C) 2022 The University of Notre Dame
3This software is distributed under the GNU General Public License.
4See the file COPYING for details.
5*/
6
7#ifndef NVPAIR_PRIVATE_H
8#define NVPAIR_PRIVATE_H
9
10/*
11The definition of an nvpair object is shared among nvpair.h
12and nvpair_history.h, but is not generally a public interface.
13*/
14
15struct nvpair {
16 struct hash_table *table;
17};
18
19#endif
Definition nvpair_private.h:15