2021-05-20 17:21:06 -07:00
|
|
|
//
|
|
|
|
// utf8.h - UTF8 helper functions
|
|
|
|
//
|
2022-11-07 19:54:59 -08:00
|
|
|
#pragma once
|
2021-05-20 15:27:24 -07:00
|
|
|
|
2021-09-21 18:45:43 -07:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2021-05-20 15:27:24 -07:00
|
|
|
#define UTF8_MAXCHARLEN 4
|
|
|
|
|
|
|
|
__attribute__((nonnull, pure))
|
2021-09-21 18:45:43 -07:00
|
|
|
const char *next_char(const char *str, const char *end);
|
2021-05-31 12:38:42 -07:00
|
|
|
__attribute__((nonnull, pure))
|
2021-09-21 18:45:43 -07:00
|
|
|
const char *prev_char(const char *start, const char *str);
|
2021-07-19 19:40:43 -07:00
|
|
|
__attribute__((nonnull, pure))
|
2021-09-21 18:45:43 -07:00
|
|
|
bool isidstart(const char *str, const char *end);
|
2021-07-19 19:40:43 -07:00
|
|
|
__attribute__((nonnull, pure))
|
2021-09-21 18:45:43 -07:00
|
|
|
bool isidcontinue(const char *str, const char *end);
|
2021-05-31 12:38:42 -07:00
|
|
|
|
2021-08-28 16:05:30 -07:00
|
|
|
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0
|