blob: ce7e9be2433a731cf0257558a6b1a0e7ef26f441 (
plain)
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
28
29
30
31
32
33
34
|
#ifndef unicode_hh_INCLUDED
#define unicode_hh_INCLUDED
#include <cstdint>
#include <ctype.h>
namespace Kakoune
{
using Codepoint = uint32_t;
inline bool is_word(Codepoint c)
{
return c == '_' or isalnum(c);
}
inline bool is_eol(Codepoint c)
{
return c == '\n';
}
inline bool is_blank(Codepoint c)
{
return c == ' ' or c == '\t';
}
inline bool is_horizontal_blank(Codepoint c)
{
return c == ' ' or c == '\t';
}
}
#endif // unicode_hh_INCLUDED
|