seq-range-array.h revision 5fdeff082e329e4a85bb7e74aaec2c35e2288557
#ifndef SEQ_RANGE_ARRAY_H
#define SEQ_RANGE_ARRAY_H
struct seq_range {
};
struct seq_range_iter {
};
/* Add sequrence to range. If the array isn't created yet, create it with
initial size of init_count. */
/* Remove given sequrence from range. Returns TRUE if it was found. */
/* Remove a sequence range. Returns number of sequences actually removed. */
/* Remove sequences from dest that don't exist in src. */
unsigned int
/* Returns TRUE if sequence exists in the range. */
/* Invert the sequence range. For example 5:6 -> min_seq:4,7:max_seq. */
/* Get the nth sequence (0 = first). Returns FALSE if idx is too large. */
#endif