00001 /* 00002 Copyright (C) 2015- The University of Notre Dame 00003 This software is distributed under the GNU General Public License. 00004 See the file COPYING for details. 00005 */ 00006 00007 /* 00008 This is a transitional interface to allow for conversions 00009 between jx and nvpair, until the former has fully replaced 00010 the latter. 00011 */ 00012 00013 #ifndef NVPAIR_JX_H 00014 #define NVPAIR_JX_H 00015 00016 struct nvpair * jx_to_nvpair( struct jx *j ); 00017 struct jx * nvpair_to_jx( struct nvpair *nv ); 00018 struct jx * jx_parse_nvpair_file( const char *path ); 00019 00020 #endif