diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-05-11 22:45:49 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-05-12 12:25:43 -0700 |
commit | e362afe43ca4144838fd544bcb048d4a033690bc (patch) | |
tree | f82e071e688af93f0b19456e015f04b25239d1a6 /core/dive.h | |
parent | 32720a7c18f5774e5ac44338bfbac8129b0bc3c9 (diff) | |
download | subsurface-e362afe43ca4144838fd544bcb048d4a033690bc.tar.gz |
Cleanup: remove UTF8 macros
At some places we use UTF8 string literals. Therefore, we effectively
only support UTF8 build systems. We might just as well remove all
the other UTF_* macros and use direct string literals.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/dive.h')
-rw-r--r-- | core/dive.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/core/dive.h b/core/dive.h index e71bb1323..6f75aff43 100644 --- a/core/dive.h +++ b/core/dive.h @@ -585,15 +585,6 @@ extern int total_weight(const struct dive *); const char *monthname(int mon); -#define UTF8_DEGREE "\xc2\xb0" -#define UTF8_DELTA "\xce\x94" -#define UTF8_UPWARDS_ARROW "\xE2\x86\x91" -#define UTF8_DOWNWARDS_ARROW "\xE2\x86\x93" -#define UTF8_AVERAGE "\xc3\xb8" -#define UTF8_SUBSCRIPT_2 "\xe2\x82\x82" -#define UTF8_WHITESTAR "\xe2\x98\x86" -#define UTF8_BLACKSTAR "\xe2\x98\x85" - extern const char *existing_filename; extern void subsurface_command_line_init(int *, char ***); extern void subsurface_command_line_exit(int *, char ***); |