• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 CBIAPTS.H
11 *
12 * Modification History:
13 *        Name                     Description
14 *     Madhu Katragadda               Creation
15 *********************************************************************************/
16 /* C API TEST FOR BREAKITERATOR */
17 
18 #ifndef _CBRKITRAPITST
19 #define _CBRKITRAPITST
20 
21 #include "unicode/utypes.h"
22 
23 #if !UCONFIG_NO_BREAK_ITERATION
24 
25 #include "cintltst.h"
26 
27 /**
28 * This is an API test.  It doesn't test very many cases, and doesn't
29 * try to test the full functionality.  It just calls each function in the class and
30 * verifies that it works on a basic level.
31 **/
32 /* The function used to test the BreakIterator API*/
33 static void TestBreakIteratorCAPI(void);
34 
35 #endif /* #if !UCONFIG_NO_BREAK_ITERATION */
36 
37 #endif
38