mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-853 (empty) Implementations for ucol_safeClone & ubrk_safeClone
X-SVN-Rev: 3661
This commit is contained in:
parent
cadc5c2a49
commit
7d75aab3e8
2 changed files with 12 additions and 1 deletions
|
@ -73,6 +73,17 @@ ubrk_openRules(const UChar *rules,
|
|||
return 0;
|
||||
}
|
||||
|
||||
U_CAPI UBreakIterator *
|
||||
ubrk_safeClone(
|
||||
const UBreakIterator *bi,
|
||||
void *stackBuffer,
|
||||
int32_t *pBufferSize,
|
||||
UErrorCode *status)
|
||||
{
|
||||
return 0; /* Hey! Add code here! */
|
||||
}
|
||||
|
||||
|
||||
U_CAPI void
|
||||
ubrk_close(UBreakIterator *bi)
|
||||
{
|
||||
|
|
|
@ -2428,7 +2428,7 @@ ucol_getStrength(const UCollator *coll)
|
|||
/* there are new APIs and some compatibility APIs */
|
||||
/****************************************************************************/
|
||||
|
||||
U_CAPI UCollator *ucol_safeClone(const UCollator *coll, void *stackBuffer, uint32_t bufferSize, UErrorCode *status) {
|
||||
U_CAPI UCollator *ucol_safeClone(const UCollator *coll, void *stackBuffer, int32_t * pBufferSize, UErrorCode *status) {
|
||||
/*return (UCollatorOld *)(((RuleBasedCollator *)coll)->safeClone());*/
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue