From fc0dae9c819a4ee64f4610db1f005dfb841030c5 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Tue, 9 Apr 2024 18:49:27 +0200 Subject: Move unicode/gbrk.h to unicode/string.h --- include/unicode/gbrk.h | 12 ------------ include/unicode/string.h | 12 ++++++++++++ 2 files changed, 12 insertions(+), 12 deletions(-) delete mode 100644 include/unicode/gbrk.h create mode 100644 include/unicode/string.h (limited to 'include/unicode') diff --git a/include/unicode/gbrk.h b/include/unicode/gbrk.h deleted file mode 100644 index 7f21371..0000000 --- a/include/unicode/gbrk.h +++ /dev/null @@ -1,12 +0,0 @@ -#ifndef MLIB_UNICODE_GBRK_H -#define MLIB_UNICODE_GBRK_H - -#include - -#include "__charN_t.h" -#include "__u8view.h" - -size_t u8glen(const char8_t *, size_t); -size_t u8gnext(struct u8view *, const char8_t **, size_t *); - -#endif /* !MLIB_UNICODE_GBRK_H */ diff --git a/include/unicode/string.h b/include/unicode/string.h new file mode 100644 index 0000000..c2a99c1 --- /dev/null +++ b/include/unicode/string.h @@ -0,0 +1,12 @@ +#ifndef MLIB_UNICODE_STRING_H +#define MLIB_UNICODE_STRING_H + +#include + +#include "__charN_t.h" +#include "__u8view.h" + +size_t u8glen(const char8_t *, size_t); +size_t u8gnext(struct u8view *, const char8_t **, size_t *); + +#endif /* !MLIB_UNICODE_STRING_H */ -- cgit v1.2.3