ICU-3100 Need internal uset_containsNone for tests

X-SVN-Rev: 15686
This commit is contained in:
Vladimir Weinstein 2004-06-03 20:55:27 +00:00
parent b32214b04a
commit 2e722895e6
2 changed files with 12 additions and 0 deletions

View File

@ -395,6 +395,12 @@ uset_getItem(const USet* set, int32_t itemIndex,
U_CAPI UBool U_EXPORT2
uset_containsAll(const USet* set1, const USet* set2);
/**
* @internal
*/
U_CAPI UBool U_EXPORT2
uset_containsNone(const USet* set1, const USet* set2);
/**
* @internal
*/

View File

@ -198,6 +198,12 @@ uset_containsAll(const USet* set1, const USet* set2) {
return ((const UnicodeSet*) set1)->containsAll(* (const UnicodeSet*) set2);
}
U_CAPI UBool U_EXPORT2
uset_containsNone(const USet* set1, const USet* set2) {
return ((const UnicodeSet*) set1)->containsNone(* (const UnicodeSet*) set2);
}
U_CAPI UBool U_EXPORT2
uset_equals(const USet* set1, const USet* set2) {
return *(const UnicodeSet*)set1 == *(const UnicodeSet*)set2;