![]() |
![]()
| ![]() |
![]()
LIBRARY#include <biolibc/pos-list.h> -lbiolibc -lxtend SYNOPSISint bl_pos_list_set_positions_ae( bl_pos_list_t *bl_pos_list_ptr, size_t c, int64_t new_positions_element ) ARGUMENTSbl_pos_list_ptr Pointer to the structure to set c Subscript to the positions array new_positions_element The new value for positions[c] DESCRIPTIONMutator for an array element of positions member in a bl_pos_list_t structure. Use this function to set bl_pos_list_ptr->positions[c] in a bl_pos_list_t object from non-member functions. RETURN VALUESBL_POS_LIST_DATA_OK if the new value is acceptable and assigned BL_POS_LIST_DATA_OUT_OF_RANGE otherwise EXAMPLESbl_pos_list_t bl_pos_list; size_t c; int64_t * new_positions_element; if ( bl_pos_list_set_positions_ae(&bl_pos_list, c, new_positions_element) SEE ALSOBL_POS_LIST_SET_POSITIONS_AE(3)
|