2017-01-20 00:20:31 +00:00
|
|
|
// © 2016 and later: Unicode, Inc. and others.
|
2016-06-15 18:58:17 +00:00
|
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
2000-01-15 02:00:06 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
2016-05-31 21:45:07 +00:00
|
|
|
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
|
|
|
* others. All Rights Reserved.
|
2000-01-15 02:00:06 +00:00
|
|
|
********************************************************************/
|
|
|
|
/********************************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
*
|
|
|
|
* File CCURRTST.H
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
* Name Description
|
|
|
|
* Madhu Katragadda Converted to C
|
|
|
|
*********************************************************************************
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Collation currency tests.
|
|
|
|
* (It's important to stay current!)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CCURRCOLLTST
|
|
|
|
#define _CCURRCOLLTST
|
|
|
|
|
2002-09-20 17:54:45 +00:00
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
2002-10-02 17:18:04 +00:00
|
|
|
#if !UCONFIG_NO_COLLATION
|
2002-09-20 17:54:45 +00:00
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
#include "cintltst.h"
|
|
|
|
|
2001-03-30 03:49:29 +00:00
|
|
|
#define MAX_TOKEN_LEN 16
|
1999-08-16 21:50:52 +00:00
|
|
|
/* Perform Collation Currency Test */
|
|
|
|
void currTest(void);
|
|
|
|
|
2002-10-02 17:18:04 +00:00
|
|
|
#endif /* #if !UCONFIG_NO_COLLATION */
|
2002-09-20 17:54:45 +00:00
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
#endif
|