]> git.saurik.com Git - apple/icu.git/blob - icuSources/test/cintltst/cbkittst.c
ICU-3.13.tar.gz
[apple/icu.git] / icuSources / test / cintltst / cbkittst.c
1 /********************************************************************
2 * COPYRIGHT:
3 * Copyright (c) 1997-2001, International Business Machines Corporation and
4 * others. All Rights Reserved.
5 ********************************************************************/
6 /********************************************************************************
7 *
8 * File CBKITTST.C
9 *
10 * Modification History:
11 * Name Description
12 * Madhu Katragadda Creation
13 *********************************************************************************
14 */
15
16 #include "unicode/utypes.h"
17
18 #if !UCONFIG_NO_BREAK_ITERATION
19
20 #include "cintltst.h"
21
22 void addBrkIterAPITest(TestNode**);
23 void addBrkIterRegrTest(TestNode**);
24
25 void addBreakIter(TestNode** root);
26
27 void addBreakIter(TestNode** root)
28 {
29 addBrkIterAPITest(root);
30 addBrkIterRegrTest(root);
31 }
32
33 #endif /* #if !UCONFIG_NO_BREAK_ITERATION */