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 CCURRTST.H 11 * 12 * Modification History: 13 * Name Description 14 * Madhu Katragadda Converted to C 15 ********************************************************************************* 16 */ 17 /** 18 * Collation currency tests. 19 * (It's important to stay current!) 20 */ 21 22 #ifndef _CCURRCOLLTST 23 #define _CCURRCOLLTST 24 25 #include "unicode/utypes.h" 26 27 #if !UCONFIG_NO_COLLATION 28 29 #include "cintltst.h" 30 31 #define MAX_TOKEN_LEN 16 32 /* Perform Collation Currency Test */ 33 void currTest(void); 34 35 #endif /* #if !UCONFIG_NO_COLLATION */ 36 37 #endif 38