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 /gen/string/gbrk | |
parent | c84f2f1b74d362054ecde1838cbc13a953cae8aa (diff) |
Change private symbol prefix from ‘__’ to ‘_’
Diffstat (limited to 'gen/string/gbrk')
-rwxr-xr-x | gen/string/gbrk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gen/string/gbrk b/gen/string/gbrk index ecde7f5..18f7cd4 100755 --- a/gen/string/gbrk +++ b/gen/string/gbrk @@ -2,17 +2,17 @@ set -e cd "${0%/*}/../.." -exec >include/unicode/__gbrk.h +exec >include/unicode/_gbrk.h cat <<C /* 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, @@ -93,5 +93,5 @@ END { cat <<C }; -#endif /* !MLIB_UNICODE___GBRK_H */ +#endif /* !MLIB_UNICODE__GBRK_H */ C |