diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-04-16 10:39:47 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-04-16 10:49:21 +0200 |
commit | 402f5b4777897f0400a6a3e710452f6f64edb7d2 (patch) | |
tree | f49762ea36389ab6202be8076a73b5c08620dd32 /include/unicode | |
parent | c84f2f1b74d362054ecde1838cbc13a953cae8aa (diff) |
Change private symbol prefix from ‘__’ to ‘_’
Diffstat (limited to 'include/unicode')
-rw-r--r-- | include/unicode/_gbrk.h (renamed from include/unicode/__gbrk.h) | 8 | ||||
-rw-r--r-- | include/unicode/prop.h | 4 | ||||
-rw-r--r-- | include/unicode/string.h | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/include/unicode/__gbrk.h b/include/unicode/_gbrk.h index 476c4a7..cfcdb34 100644 --- a/include/unicode/__gbrk.h +++ b/include/unicode/_gbrk.h @@ -1,11 +1,11 @@ /* This file is autogenerated by gen/string/gbrk; DO NOT EDIT. */ -#ifndef MLIB_UNICODE___GBRK_H -#define MLIB_UNICODE___GBRK_H +#ifndef MLIB_UNICODE__GBRK_H +#define MLIB_UNICODE__GBRK_H /* clang-format off */ -#include "__rune.h" +#include "_rune.h" typedef enum { GBP_OTHER = 0, @@ -1564,4 +1564,4 @@ static const struct { {0x0E01F0, 0x0E0FFF, GBP_CTRL}, }; -#endif /* !MLIB_UNICODE___GBRK_H */ +#endif /* !MLIB_UNICODE__GBRK_H */ diff --git a/include/unicode/prop.h b/include/unicode/prop.h index e3e0d5e..01283e8 100644 --- a/include/unicode/prop.h +++ b/include/unicode/prop.h @@ -4,9 +4,9 @@ #include <inttypes.h> #include <stddef.h> -#include "__rune.h" -#include "__u8view.h" #include "_attrs.h" +#include "_rune.h" +#include "_u8view.h" struct rview { const rune *p; diff --git a/include/unicode/string.h b/include/unicode/string.h index 81c2aff..6363d9d 100644 --- a/include/unicode/string.h +++ b/include/unicode/string.h @@ -3,8 +3,8 @@ #include <stddef.h> -#include "__charN_t.h" -#include "__u8view.h" +#include "_charN_t.h" +#include "_u8view.h" /* clang-format off */ |