]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | /******************************************************************** |
2 | * COPYRIGHT: | |
3 | * Copyright (c) 1997-2001, International Business Machines Corporation and | |
4 | * others. All Rights Reserved. | |
5 | ********************************************************************/ | |
6 | /******************************************************************************** | |
7 | * | |
8 | * File CALLCOLL.H | |
9 | * | |
10 | * Modification History: | |
11 | * Name Description | |
12 | * Madhu Katragadda Ported to C | |
13 | ********************************************************************************* | |
14 | */ | |
15 | /** | |
16 | * CollationDummyTest is a third level test class. This tests creation of | |
17 | * a customized collator object. For example, number 1 to be sorted | |
18 | * equlivalent to word 'one'. | |
19 | */ | |
20 | #ifndef _CALLCOLLTST | |
21 | #define _CALLCOLLTST | |
22 | ||
23 | #include "unicode/utypes.h" | |
24 | ||
25 | #if !UCONFIG_NO_COLLATION | |
26 | ||
27 | #include "cintltst.h" | |
28 | ||
29 | ||
30 | ||
31 | /* tests comparison of custom collation with different strengths */ | |
32 | void doTest(UCollator*, const UChar* source, const UChar* target, UCollationResult result); | |
33 | ||
34 | ||
35 | #endif /* #if !UCONFIG_NO_COLLATION */ | |
36 | ||
37 | #endif |