FreeBSD Manual Pages
elpa_store_settings(3) Library Functions Manual elpa_store_settings(3) NAME elpa_store_settings - stores the setting of an ELPA object SYNOPSIS FORTRAN INTERFACE use elpa class(elpa_t), pointer :: elpa_handle call elpa_handle%store_settings (filename, error) With the definitions of the input and output variables: class(elpa_t) :: elpa_handle An instance of the ELPA object character(*) :: filename The filename to be used for storing the settings integer, optional :: error An error return code C/C++ INTERFACE #include <elpa/elpa.h> elpa_t elpa_handle; void elpa_store_settings(elpa_t elpa_handle, const char *filename, int *er- ror); With the definitions of the input and output variables: elpa_t elpa_handle; The handle to the ELPA object const char *filename; The filename to store the settings int *error; The error return code DESCRIPTION Stores all the settings of an ELPA object in a human readable form to a file specified via the filename parameter. The settings can later be re- stored with the elpa_load_settings(3) method. SEE ALSO elpa_load_setting(3) ELPA Thu Nov 28 2024 elpa_store_settings(3)
NAME | SYNOPSIS | DESCRIPTION | SEE ALSO
Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=elpa_store_settings&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>
