Added the functionlist section to the .conf of the libraries present in
[AROS.git] / workbench / libs / nonvolatile / freenvdata.c
blob538b4e5f34174eac26832a6ab1767f3e790f92fb
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 /*****************************************************************************
8 NAME */
10 #include <libraries/nonvolatile.h>
11 #include <proto/exec.h>
12 #include "nonvolatile_intern.h"
14 AROS_LH1(VOID, FreeNVData,
16 /* SYNOPSIS */
18 AROS_LHA(APTR, data, A0),
20 /* LOCATION */
22 struct Library *, nvBase, 6, Nonvolatile)
24 /* FUNCTION
26 Free data allocated by nonvolatile.library (GetCopyNV(), GetNVInfo(),
27 GetNVList()).
29 INPUTS
31 data -- data got from a nonvolatile.library function; may be NULL in
32 which case this function does nothing
34 RESULT
36 NOTES
38 EXAMPLE
40 BUGS
42 SEE ALSO
44 GetCopyNV(), GetNVInfo(), GetNVList()
46 INTERNALS
48 ******************************************************************************/
51 AROS_LIBFUNC_INIT
53 FreeVec(data);
55 AROS_LIBFUNC_EXIT
56 } /* FreeNVData */