OLD | NEW |
1 /******************************************************************** | 1 /******************************************************************** |
2 * COPYRIGHT: | 2 * COPYRIGHT: |
3 * Copyright (c) 1997-2001, International Business Machines Corporation and | 3 * Copyright (c) 1997-2014, International Business Machines Corporation and |
4 * others. All Rights Reserved. | 4 * others. All Rights Reserved. |
5 ********************************************************************/ | 5 ********************************************************************/ |
6 /*******************************************************************************
* | 6 /*******************************************************************************
* |
7 * | 7 * |
8 * File CG7COLL.H | 8 * File CG7COLL.H |
9 * | 9 * |
10 * Modification History: | 10 * Modification History: |
11 * Name Description | 11 * Name Description |
12 * Madhu Katragadda Converted to C | 12 * Madhu Katragadda Converted to C |
13 ********************************************************************************
*/ | 13 ********************************************************************************
*/ |
(...skipping 18 matching lines...) Expand all Loading... |
32 * abbot | 32 * abbot |
33 * coop | 33 * coop |
34 * co-p | 34 * co-p |
35 * cop | 35 * cop |
36 */ | 36 */ |
37 | 37 |
38 #ifndef _CG7COLLTST | 38 #ifndef _CG7COLLTST |
39 #define _CG7COLLTST | 39 #define _CG7COLLTST |
40 | 40 |
41 #include "unicode/utypes.h" | 41 #include "unicode/utypes.h" |
| 42 #include "cmemory.h" |
42 | 43 |
43 #if !UCONFIG_NO_COLLATION | 44 #if !UCONFIG_NO_COLLATION |
44 | 45 |
45 #include "cintltst.h" | 46 #include "cintltst.h" |
46 | 47 |
47 #define MAX_TOKEN_LEN 16 | 48 #define MAX_TOKEN_LEN 16 |
48 #define TESTLOCALES 12 | 49 #define TESTLOCALES 12 |
49 #define FIXEDTESTSET 15 | 50 #define FIXEDTESTSET 15 |
50 #define TOTALTESTSET 30 | 51 #define TOTALTESTSET 30 |
51 | 52 |
(...skipping 10 matching lines...) Expand all Loading... |
62 /* "& Question'-'mark ; '?' & Hash'-'mark ; '#' & Ampersand ; '&'" */ | 63 /* "& Question'-'mark ; '?' & Hash'-'mark ; '#' & Ampersand ; '&'" */ |
63 static void TestDemo3(void); | 64 static void TestDemo3(void); |
64 | 65 |
65 /* perform test with added rules */ | 66 /* perform test with added rules */ |
66 /* " & aa ; a'-' & ee ; e'-' & ii ; i'-' & oo ; o'-' & uu ; u'-' " */ | 67 /* " & aa ; a'-' & ee ; e'-' & ii ; i'-' & oo ; o'-' & uu ; u'-' " */ |
67 static void TestDemo4(void); | 68 static void TestDemo4(void); |
68 | 69 |
69 #endif /* #if !UCONFIG_NO_COLLATION */ | 70 #endif /* #if !UCONFIG_NO_COLLATION */ |
70 | 71 |
71 #endif | 72 #endif |
OLD | NEW |