mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-1117 add getRuleStatus() to RBBI
X-SVN-Rev: 9054
This commit is contained in:
parent
115e0039c5
commit
c13514c078
1 changed files with 7 additions and 0 deletions
|
@ -248,3 +248,10 @@ ubrk_isBoundary(UBreakIterator *bi, int32_t offset)
|
|||
{
|
||||
return ((BreakIterator *)bi)->isBoundary(offset);
|
||||
};
|
||||
|
||||
|
||||
U_CAPI int32_t U_EXPORT2
|
||||
ubrk_getRuleStatus(UBreakIterator *bi)
|
||||
{
|
||||
return ((RuleBasedBreakIterator *)bi)->getRuleStatus();
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue