44707c157b
X-SVN-Rev: 9903
38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
/********************************************************************
|
|
* COPYRIGHT:
|
|
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
|
* others. All Rights Reserved.
|
|
********************************************************************/
|
|
/********************************************************************************
|
|
*
|
|
* File CALLCOLL.H
|
|
*
|
|
* Modification History:
|
|
* Name Description
|
|
* Madhu Katragadda Ported to C
|
|
*********************************************************************************
|
|
*/
|
|
/**
|
|
* CollationDummyTest is a third level test class. This tests creation of
|
|
* a customized collator object. For example, number 1 to be sorted
|
|
* equlivalent to word 'one'.
|
|
*/
|
|
#ifndef _CALLCOLLTST
|
|
#define _CALLCOLLTST
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
#if !UCONFIG_NO_COLLATION
|
|
|
|
#include "cintltst.h"
|
|
|
|
|
|
|
|
/* tests comparison of custom collation with different strengths */
|
|
void doTest(UCollator*, const UChar* source, const UChar* target, UCollationResult result);
|
|
|
|
|
|
#endif /* #if !UCONFIG_NO_COLLATION */
|
|
|
|
#endif
|