Denys Vlasenko | 42a8fd0 | 2009-07-11 21:36:13 +0200 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Licensed under the GPL version 2, see the file LICENSE in this tarball. |
| 4 | */ |
| 5 | #ifndef UNICODE_H |
| 6 | #define UNICODE_H 1 |
| 7 | |
Denys Vlasenko | bb1dcc9 | 2010-02-02 12:45:38 +0100 | [diff] [blame^] | 8 | PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN |
| 9 | |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 10 | enum { |
| 11 | UNICODE_UNKNOWN = 0, |
| 12 | UNICODE_OFF = 1, |
| 13 | UNICODE_ON = 2, |
| 14 | }; |
| 15 | |
Denys Vlasenko | 42a8fd0 | 2009-07-11 21:36:13 +0200 | [diff] [blame] | 16 | #if !ENABLE_FEATURE_ASSUME_UNICODE |
| 17 | |
Denys Vlasenko | 9f93d62 | 2010-01-24 07:44:03 +0100 | [diff] [blame] | 18 | # define unicode_strlen(string) strlen(string) |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 19 | # define unicode_status UNICODE_OFF |
| 20 | # define init_unicode() ((void)0) |
Denys Vlasenko | 42a8fd0 | 2009-07-11 21:36:13 +0200 | [diff] [blame] | 21 | |
| 22 | #else |
| 23 | |
Denys Vlasenko | 9f93d62 | 2010-01-24 07:44:03 +0100 | [diff] [blame] | 24 | size_t FAST_FUNC unicode_strlen(const char *string); |
Denys Vlasenko | e17764c | 2010-01-30 23:16:21 +0100 | [diff] [blame] | 25 | enum { |
| 26 | UNI_FLAG_PAD = (1 << 0), |
| 27 | }; |
Denys Vlasenko | e17764c | 2010-01-30 23:16:21 +0100 | [diff] [blame] | 28 | //UNUSED: unsigned FAST_FUNC unicode_padding_to_width(unsigned width, const char *src); |
| 29 | //UNUSED: char* FAST_FUNC unicode_conv_to_printable2(uni_stat_t *stats, const char *src, unsigned width, int flags); |
| 30 | char* FAST_FUNC unicode_conv_to_printable(uni_stat_t *stats, const char *src); |
| 31 | char* FAST_FUNC unicode_conv_to_printable_maxwidth(uni_stat_t *stats, const char *src, unsigned maxwidth); |
| 32 | char* FAST_FUNC unicode_conv_to_printable_fixedwidth(uni_stat_t *stats, const char *src, unsigned width); |
Denys Vlasenko | fda8f57 | 2009-07-11 22:26:48 +0200 | [diff] [blame] | 33 | |
Denys Vlasenko | 42a8fd0 | 2009-07-11 21:36:13 +0200 | [diff] [blame] | 34 | # if ENABLE_LOCALE_SUPPORT |
| 35 | |
| 36 | # include <wchar.h> |
| 37 | # include <wctype.h> |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 38 | extern uint8_t unicode_status; |
| 39 | void init_unicode(void) FAST_FUNC; |
Denys Vlasenko | 42a8fd0 | 2009-07-11 21:36:13 +0200 | [diff] [blame] | 40 | |
| 41 | # else |
| 42 | |
Denys Vlasenko | 9f93d62 | 2010-01-24 07:44:03 +0100 | [diff] [blame] | 43 | /* Homegrown Unicode support. It knows only C and Unicode locales. */ |
Denys Vlasenko | fda8f57 | 2009-07-11 22:26:48 +0200 | [diff] [blame] | 44 | |
Denys Vlasenko | 42a8fd0 | 2009-07-11 21:36:13 +0200 | [diff] [blame] | 45 | # if !ENABLE_FEATURE_CHECK_UNICODE_IN_ENV |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 46 | # define unicode_status UNICODE_ON |
| 47 | # define init_unicode() ((void)0) |
Denys Vlasenko | 42a8fd0 | 2009-07-11 21:36:13 +0200 | [diff] [blame] | 48 | # else |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 49 | extern uint8_t unicode_status; |
| 50 | void init_unicode(void) FAST_FUNC; |
Denys Vlasenko | 42a8fd0 | 2009-07-11 21:36:13 +0200 | [diff] [blame] | 51 | # endif |
| 52 | |
| 53 | # undef MB_CUR_MAX |
| 54 | # define MB_CUR_MAX 6 |
| 55 | |
| 56 | /* Prevent name collisions */ |
| 57 | # define wint_t bb_wint_t |
| 58 | # define mbstate_t bb_mbstate_t |
| 59 | # define mbstowcs bb_mbstowcs |
| 60 | # define wcstombs bb_wcstombs |
| 61 | # define wcrtomb bb_wcrtomb |
| 62 | # define iswspace bb_iswspace |
| 63 | # define iswalnum bb_iswalnum |
| 64 | # define iswpunct bb_iswpunct |
Denys Vlasenko | 9f93d62 | 2010-01-24 07:44:03 +0100 | [diff] [blame] | 65 | # define wcwidth bb_wcwidth |
Denys Vlasenko | 42a8fd0 | 2009-07-11 21:36:13 +0200 | [diff] [blame] | 66 | |
| 67 | typedef int32_t wint_t; |
| 68 | typedef struct { |
| 69 | char bogus; |
| 70 | } mbstate_t; |
| 71 | |
| 72 | size_t mbstowcs(wchar_t *dest, const char *src, size_t n) FAST_FUNC; |
| 73 | size_t wcstombs(char *dest, const wchar_t *src, size_t n) FAST_FUNC; |
| 74 | size_t wcrtomb(char *s, wchar_t wc, mbstate_t *ps) FAST_FUNC; |
| 75 | int iswspace(wint_t wc) FAST_FUNC; |
| 76 | int iswalnum(wint_t wc) FAST_FUNC; |
| 77 | int iswpunct(wint_t wc) FAST_FUNC; |
| 78 | |
Denys Vlasenko | 9c3b84a | 2010-01-18 01:55:00 +0100 | [diff] [blame] | 79 | |
Denys Vlasenko | fda8f57 | 2009-07-11 22:26:48 +0200 | [diff] [blame] | 80 | # endif /* !LOCALE_SUPPORT */ |
Denys Vlasenko | 42a8fd0 | 2009-07-11 21:36:13 +0200 | [diff] [blame] | 81 | |
Denys Vlasenko | fda8f57 | 2009-07-11 22:26:48 +0200 | [diff] [blame] | 82 | #endif /* FEATURE_ASSUME_UNICODE */ |
Denys Vlasenko | 42a8fd0 | 2009-07-11 21:36:13 +0200 | [diff] [blame] | 83 | |
Denys Vlasenko | bb1dcc9 | 2010-02-02 12:45:38 +0100 | [diff] [blame^] | 84 | POP_SAVED_FUNCTION_VISIBILITY |
| 85 | |
Denys Vlasenko | 42a8fd0 | 2009-07-11 21:36:13 +0200 | [diff] [blame] | 86 | #endif |