ICU 62.1  62.1
ulistformatter.h
Go to the documentation of this file.
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /*
4 *****************************************************************************************
5 * Copyright (C) 2015-2016, International Business Machines
6 * Corporation and others. All Rights Reserved.
7 *****************************************************************************************
8 */
9 
10 #ifndef ULISTFORMATTER_H
11 #define ULISTFORMATTER_H
12 
13 #include "unicode/utypes.h"
14 
15 #if !UCONFIG_NO_FORMATTING
16 
17 #include "unicode/localpointer.h"
18 
33 struct UListFormatter;
52 U_CAPI UListFormatter* U_EXPORT2
53 ulistfmt_open(const char* locale,
54  UErrorCode* status);
55 
62 U_CAPI void U_EXPORT2
64 
65 
66 #if U_SHOW_CPLUSPLUS_API
67 
69 
80 
82 
83 #endif
84 
119 U_CAPI int32_t U_EXPORT2
120 ulistfmt_format(const UListFormatter* listfmt,
121  const UChar* const strings[],
122  const int32_t * stringLengths,
123  int32_t stringCount,
124  UChar* result,
125  int32_t resultCapacity,
126  UErrorCode* status);
127 
128 #endif /* #if !UCONFIG_NO_FORMATTING */
129 
130 #endif
ulistfmt_format
U_CAPI int32_t ulistfmt_format(const UListFormatter *listfmt, const UChar *const strings[], const int32_t *stringLengths, int32_t stringCount, UChar *result, int32_t resultCapacity, UErrorCode *status)
Formats a list of strings using the conventions established for the UListFormatter object.
utypes.h
Basic definitions for ICU, for both C and C++ APIs.
ulistfmt_open
U_CAPI UListFormatter * ulistfmt_open(const char *locale, UErrorCode *status)
Open a new UListFormatter object using the rules for a given locale.
UErrorCode
UErrorCode
Error code to replace exception handling, so that the code is compatible with all C++ compilers,...
Definition: utypes.h:396
ulistfmt_close
U_CAPI void ulistfmt_close(UListFormatter *listfmt)
Close a UListFormatter object.
UListFormatter
struct UListFormatter UListFormatter
C typedef for struct UListFormatter.
Definition: ulistformatter.h:34
U_DEFINE_LOCAL_OPEN_POINTER
#define U_DEFINE_LOCAL_OPEN_POINTER(LocalPointerClassName, Type, closeFunction)
Definition: localpointer.h:487
localpointer.h
C++ API: "Smart pointers" for use with and in ICU4C C++ code.
LocalUListFormatterPointer
UChar
uint16_t UChar
Definition: umachine.h:353
U_NAMESPACE_END
#define U_NAMESPACE_END
Definition: uversion.h:138
U_CAPI
#define U_CAPI
This is used to declare a function as a public ICU C API.
Definition: umachine.h:109
U_NAMESPACE_BEGIN
#define U_NAMESPACE_BEGIN
Definition: uversion.h:137