]>
Commit | Line | Data |
---|---|---|
f3c0d7a5 A |
1 | // © 2016 and later: Unicode, Inc. and others. |
2 | // License & terms of use: http://www.unicode.org/copyright.html | |
b75a7d8f A |
3 | /******************************************************************** |
4 | * COPYRIGHT: | |
5 | * Copyright (c) 1997-2001, International Business Machines Corporation and | |
6 | * others. All Rights Reserved. | |
7 | ********************************************************************/ | |
8 | /******************************************************************************** | |
9 | * | |
10 | * File CBKITTST.C | |
11 | * | |
12 | * Modification History: | |
13 | * Name Description | |
14 | * Madhu Katragadda Creation | |
15 | ********************************************************************************* | |
16 | */ | |
17 | ||
18 | #include "unicode/utypes.h" | |
19 | ||
20 | #if !UCONFIG_NO_BREAK_ITERATION | |
21 | ||
22 | #include "cintltst.h" | |
23 | ||
24 | void addBrkIterAPITest(TestNode**); | |
b75a7d8f A |
25 | |
26 | void addBreakIter(TestNode** root); | |
27 | ||
28 | void addBreakIter(TestNode** root) | |
29 | { | |
30 | addBrkIterAPITest(root); | |
b75a7d8f A |
31 | } |
32 | ||
33 | #endif /* #if !UCONFIG_NO_BREAK_ITERATION */ |