aboutsummaryrefslogtreecommitdiff
path: root/text-util.h
blob: 9bfa705dd4bc393bbaea1a9c19b87b3f74bafcae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef TEXT_UTIL_H
#define TEXT_UTIL_H

#include <stdbool.h>
#include <stddef.h>
#include "text.h"

/* test whether the given range is valid (start <= end) */
bool text_range_valid(Filerange*);
/* get the size of the range (end-start) or zero if invalid */
size_t text_range_size(Filerange*);
/* create an empty / invalid range of size zero */
Filerange text_range_empty(void);
/* merge two ranges into a new one which contains both of them */
Filerange text_range_union(Filerange*, Filerange*);
/* create new range [min(a,b), max(a,b)] */
Filerange text_range_new(size_t a, size_t b);
/* test whether two ranges are equal */
bool text_range_equal(Filerange*, Filerange*);
/* test whether two ranges overlap */
bool text_range_overlap(Filerange*, Filerange*);
/* test whether a given position is within a certain range */
bool text_range_contains(Filerange*, size_t pos);
/* count the number of graphemes in data */
int text_char_count(const char *data, size_t len);

#endif