OLD | NEW |
1 /* | 1 /* |
2 ********************************************************************** | 2 ********************************************************************** |
3 * Copyright (C) 2004-2010, International Business Machines | 3 * Copyright (C) 2004-2014, International Business Machines |
4 * Corporation and others. All Rights Reserved. | 4 * Corporation and others. All Rights Reserved. |
5 ********************************************************************** | 5 ********************************************************************** |
6 */ | 6 */ |
7 | 7 |
8 #ifndef ULOCIMP_H | 8 #ifndef ULOCIMP_H |
9 #define ULOCIMP_H | 9 #define ULOCIMP_H |
10 | 10 |
11 #include "unicode/uloc.h" | 11 #include "unicode/uloc.h" |
12 | 12 |
13 /** | 13 /** |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 const char **pEnd); | 55 const char **pEnd); |
56 | 56 |
57 U_CFUNC int32_t | 57 U_CFUNC int32_t |
58 ulocimp_getCountry(const char *localeID, | 58 ulocimp_getCountry(const char *localeID, |
59 char *country, int32_t countryCapacity, | 59 char *country, int32_t countryCapacity, |
60 const char **pEnd); | 60 const char **pEnd); |
61 | 61 |
62 U_CAPI const char * U_EXPORT2 | 62 U_CAPI const char * U_EXPORT2 |
63 locale_getKeywordsStart(const char *localeID); | 63 locale_getKeywordsStart(const char *localeID); |
64 | 64 |
| 65 |
| 66 U_CFUNC UBool |
| 67 ultag_isUnicodeLocaleKey(const char* s, int32_t len); |
| 68 |
| 69 U_CFUNC UBool |
| 70 ultag_isUnicodeLocaleType(const char* s, int32_t len); |
| 71 |
| 72 U_CFUNC const char* |
| 73 ulocimp_toBcpKey(const char* key); |
| 74 |
| 75 U_CFUNC const char* |
| 76 ulocimp_toLegacyKey(const char* key); |
| 77 |
| 78 U_CFUNC const char* |
| 79 ulocimp_toBcpType(const char* key, const char* type, UBool* isKnownKey, UBool* i
sSpecialType); |
| 80 |
| 81 U_CFUNC const char* |
| 82 ulocimp_toLegacyType(const char* key, const char* type, UBool* isKnownKey, UBool
* isSpecialType); |
| 83 |
65 #endif | 84 #endif |
OLD | NEW |