2012-10-09 19:15:05 +02:00
|
|
|
#ifndef unicode_hh_INCLUDED
|
|
|
|
#define unicode_hh_INCLUDED
|
|
|
|
|
|
|
|
#include <cstdint>
|
2013-07-15 14:49:50 +02:00
|
|
|
#include <ctype.h>
|
2012-10-09 19:15:05 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
using Codepoint = uint32_t;
|
|
|
|
|
|
|
|
inline bool is_word(Codepoint c)
|
|
|
|
{
|
2013-07-15 14:49:50 +02:00
|
|
|
return c == '_' or isalnum(c);
|
2012-10-09 19:15:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline bool is_eol(Codepoint c)
|
|
|
|
{
|
|
|
|
return c == '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool is_blank(Codepoint c)
|
|
|
|
{
|
|
|
|
return c == ' ' or c == '\t';
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // unicode_hh_INCLUDED
|