equal
deleted
inserted
replaced
|
1 /* |
|
2 ********************************************************************** |
|
3 * Copyright (C) 2004, International Business Machines |
|
4 * Corporation and others. All Rights Reserved. |
|
5 ********************************************************************** |
|
6 */ |
|
7 |
|
8 #ifndef ULOCIMP_H |
|
9 #define ULOCIMP_H |
|
10 |
|
11 #include "unicode/uloc.h" |
|
12 |
|
13 /** |
|
14 * Create an iterator over the specified keywords list |
|
15 * @param keywordList double-null terminated list. Will be copied. |
|
16 * @param keywordListSize size in bytes of keywordList |
|
17 * @param status err code |
|
18 * @return enumeration (owned by caller) of the keyword list. |
|
19 * @internal ICU 3.0 |
|
20 */ |
|
21 U_CAPI UEnumeration* U_EXPORT2 |
|
22 uloc_openKeywordList(const char *keywordList, int32_t keywordListSize, UErrorCode* status); |
|
23 |
|
24 #endif |