Functions | |
int | hpd_rcl_int (char *name, long long *val) |
Recalls a DOINT RPL object from the current or an upper directory, and puts its value into the variable passed as argument. | |
int | hpd_rcl_uint (char *name, unsigned long long *val) |
Recalls a DOHXS RPL object from the current or an upper directory, and puts its value into the variable passed as argument. | |
int | hpd_rcl_real (char *name, double *val) |
Recalls a DOREAL RPL object from the current or an upper directory, and puts its value into the variable passed as argument. | |
int | hpd_rcl_complex (char *name, complex_t *val) |
Recalls a DOCMP RPL object from the current or an upper directory, and puts its value into the variable passed as argument. | |
int | hpd_rcl_str (char *name, char **val) |
Recalls a DOCSTR RPL object from the current or an upper directory, and puts its value into the variable passed as argument. | |
int | hpd_rcl_list (char *name, list_t **val) |
Recalls a DOLIST RPL object from the current or an upper directory, and puts its value into the variable passed as argument. | |
int | hpd_rcl_array (char *name, array_t **val) |
Recalls a DOMATRIX or DOARRY RPL object from the current or an upper directory, and puts its value into the variable passed as argument. | |
int | hpd_rcl_symb (char *name, entry_t **val) |
Recalls a DOSYMB RPL object from the current or an upper directory, and puts its value into the variable passed as argument. |
|
Recalls a DOMATRIX or DOARRY RPL object from the current or an upper directory, and puts its value into the variable passed as argument. This function searches for the variable in the current or upper directory. The value is read if the type matches.
|
|
Recalls a DOCMP RPL object from the current or an upper directory, and puts its value into the variable passed as argument. This function searches for the variable in the current or upper directory. The value is read if the type matches.
|
|
Recalls a DOINT RPL object from the current or an upper directory, and puts its value into the variable passed as argument. This function searches for the variable in the current or upper directory. The value is read if the type matches, or if the convert flag is set (see hps_convert) and the type is convertable. The authorized conversions are described below : DOHXS (unsigned long long) -> DOINT (long long) DOREAL (double) -> DOINT (long long)
|
|
Recalls a DOLIST RPL object from the current or an upper directory, and puts its value into the variable passed as argument. This function searches for the variable in the current or upper directory. The value is read if the type matches.
|
|
Recalls a DOREAL RPL object from the current or an upper directory, and puts its value into the variable passed as argument. This function searches for the variable in the current or upper directory. The value is read if the type match, or if the convert flag is set (see hps_convert) and the type is convertable. The authorized conversions are described below : DOHXS (unsigned long long) -> DOREAL (double) DOINT (long long) -> DOREAL (double) DOCMP (complex_t) -> DOREAL (double) if imaginary part is null
|
|
Recalls a DOCSTR RPL object from the current or an upper directory, and puts its value into the variable passed as argument. This function searches for the variable in the current or upper directory. The value is read if the type matches.
|
|
Recalls a DOSYMB RPL object from the current or an upper directory, and puts its value into the variable passed as argument. This function searches for the variable in the current or upper directory. The value is read if the type matches.
|
|
Recalls a DOHXS RPL object from the current or an upper directory, and puts its value into the variable passed as argument. This function searches for the variable in the current or upper directory. The value is read if the type matches.
|