#include <fastq-trim.h>
-lfastq-trim
FASTQ_TRIM_MIN_LENGTH(ptr)
ptr Pointer to a fastq_trim_t structure
Accessor macro for min_length. Use this macro to reference min_length in a
fastq_trim_t structure from functions that are not members of the class. This
allows separation of implementation from interface. While the implementation
of the fastq_trim_t structure may change, effort is made to preserve the API
of functions and macros used to access it.
fastq_trim_t fastq_trim;
size_t min_length;
min_length = FASTQ_TRIM_MIN_LENGTH(&fastq_trim);
See fastq-trim.h for a full list of macros.