cctools
link_nvpair.h
1 /*
2 Copyright (C) 2012- The University of Notre Dame
3 This software is distributed under the GNU General Public License.
4 See the file COPYING for details.
5 */
6 
7 #ifndef LINK_NVPAIR_H
8 #define LINK_NVPAIR_H
9 
10 #include "link.h"
11 #include "nvpair.h"
12 
19 struct nvpair *link_nvpair_read( struct link *l, time_t stoptime );
20 
26 void link_nvpair_write( struct link *l, struct nvpair *nv, time_t stoptime );
27 
28 #endif
An nvpair object is a collection of name-value pairs that might describe a complex object such as a h...
Definition: nvpair_private.h:15