1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
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
24void addBrkIterAPITest(TestNode**);
25
26void addBreakIter(TestNode** root);
27
28void addBreakIter(TestNode** root)
29{
30    addBrkIterAPITest(root);
31}
32
33#endif /* #if !UCONFIG_NO_BREAK_ITERATION */
34