hdf_set_copy(3) Copy a value from one location in the

SYNOPSIS


#include <util/neo_hdf.h>

NEOERR* hdf_set_copy (HDF *hdf, const char *dest, const char *src);

ARGUMENTS

hdf -> the pointer to the dataset node
dest -> the name of the destination node
src -> the name of the source node

DESCRIPTION

hdf_set_copy first walks the hdf dataset to the named src node, and then copies that value to the named dest node. If the src node is not found, an error is raised.

RETURN VALUE

None