aboutsummaryrefslogtreecommitdiff
path: root/text-objects.h
blob: 62d30e54fb3b2ce62e89db5ec18f958cf5842cfd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef TEXT_OBJECTS_H
#define TEXT_OBJECTS_H

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

Filerange text_object_word(Text*, size_t pos);
Filerange text_object_word_boundry(Text*, size_t pos, int (*isboundry)(int));
Filerange text_object_char(Text*, size_t pos, char c);
Filerange text_object_sentence(Text*, size_t pos);
Filerange text_object_paragraph(Text*, size_t pos);

#endif