bp/utf8.h

20 lines
492 B
C
Raw Normal View History

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
#include <stdbool.h>
2021-05-20 15:27:24 -07:00
#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