scuffed-code/icu4c/source/test/cintltst/cdetst.h

43 lines
1.2 KiB
C
Raw Normal View History

/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-2001, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
/********************************************************************************
1999-08-16 21:50:52 +00:00
*
* File CDETST.H
*
* Modification History:
* Name Description
* Madhu Katragadda Converted to C
*********************************************************************************/
1999-08-16 21:50:52 +00:00
/**
* CollationGERMANTest is a third level test class. This tests the locale
* specific primary, secondary and tertiary rules. For example, the ignorable
* character '-' in string "black-bird". The en_US locale uses the default
* collation rules as its sorting sequence.
*/
#ifndef _CGERCOLLTST
#define _CGERCOLLTST
#include "unicode/utypes.h"
#if !UCONFIG_NO_COLLATION
1999-08-16 21:50:52 +00:00
#include "cintltst.h"
#define MAX_TOKEN_LEN 16
1999-08-16 21:50:52 +00:00
/* performs test with strength PRIMARY */
static void TestPrimary(void);
1999-08-16 21:50:52 +00:00
/* perform test with strength TERTIARY */
static void TestTertiary(void);
#endif /* #if !UCONFIG_NO_COLLATION */
1999-08-16 21:50:52 +00:00
#endif