pub unsafe extern "C" fn slow5_aux_get_int8_array(
read: *const slow5_rec_t,
field: *const c_char,
len: *mut u64,
err: *mut c_int,
) -> *mut i8Expand description
Get an auxiliary field in a SLOW5 record as an 8-bit signed integer array.
@param read address of a slow5_rec_t pointer @param field auxiliary field name @param len number of data values in the returned array @param err error code, 0 on success, <0 on failure and slow5_errno is set SLOW5_ERR_ARG if read or field is NULL SLOW5_ERR_NOAUX if no auxiliary hash map for the record SLOW5_ERR_NOFLD if the field was not found SLOW5_ERR_TYPE if the desired return type does not match the field’s type @return pointer to the array of data values or NULL on error