blob: f5c251f303b424732f67dfbd05b5ce09f1e8db4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// utf8.h - UTF8 helper functions
//
#pragma once
#include <stdbool.h>
#define UTF8_MAXCHARLEN 4
__attribute__((nonnull, pure))
const char *next_char(const char *str, const char *end);
__attribute__((nonnull, pure))
const char *prev_char(const char *start, const char *str);
__attribute__((nonnull, pure))
bool isidstart(const char *str, const char *end);
__attribute__((nonnull, pure))
bool isidcontinue(const char *str, const char *end);
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0
|