28 lines
807 B
C
28 lines
807 B
C
|
/*
|
||
|
**********************************************************************
|
||
|
* Copyright (c) 2002, International Business Machines
|
||
|
* Corporation and others. All Rights Reserved.
|
||
|
**********************************************************************
|
||
|
* Author: Alan Liu
|
||
|
* Created: November 11 2002
|
||
|
* Since: ICU 2.4
|
||
|
**********************************************************************
|
||
|
*/
|
||
|
#ifndef _USTRENUM_H_
|
||
|
#define _USTRENUM_H_
|
||
|
|
||
|
#include "unicode/uenum.h"
|
||
|
#include "unicode/strenum.h"
|
||
|
|
||
|
/**
|
||
|
* Given a StringEnumeration, wrap it in a UEnumeration. The
|
||
|
* StringEnumeration is adopted; after this call, the caller must not
|
||
|
* delete it (regardless of error status).
|
||
|
*/
|
||
|
U_CAPI UEnumeration* U_EXPORT2
|
||
|
uenum_openStringEnumeration(StringEnumeration* adopted, UErrorCode* ec);
|
||
|
|
||
|
/* _USTRENUM_H_ */
|
||
|
#endif
|
||
|
/*eof*/
|