cctools
nvpair_jx.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/*
8This is a transitional interface to allow for conversions
9between jx and nvpair, until the former has fully replaced
10the latter.
11*/
12
13#ifndef NVPAIR_JX_H
14#define NVPAIR_JX_H
15
16struct nvpair * jx_to_nvpair( struct jx *j );
17struct jx * nvpair_to_jx( struct nvpair *nv );
18struct jx * jx_parse_nvpair_file( const char *path );
19
20#endif
JX value representing any expression type.
Definition jx.h:117
Definition nvpair_private.h:15