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