#include <biolibc/pos-list.h>
-lbiolibc -lxtend
int bl_pos_list_set_positions_ae(
bl_pos_list_t *bl_pos_list_ptr,
size_t c,
uint64_t new_positions_element
)
bl_pos_list_ptr Pointer to the structure to set
c Subscript to the positions array
new_positions_element The new value for positions[c]
Mutator 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.
BL_POS_LIST_DATA_OK if the new value is acceptable and assigned
BL_POS_LIST_DATA_OUT_OF_RANGE otherwise
bl_pos_list_t bl_pos_list;
size_t c;
uint64_t * new_positions_element;
if ( bl_pos_list_set_positions_ae(&bl_pos_list, c, new_positions_element)
== BL_POS_LIST_DATA_OK )
{
}
BL_POS_LIST_SET_POSITIONS_AE(3)