c0ecb9aa96
Setting MAX_TOKEN_LEN to a lower limit takes out about 100K from the executable on Windows. If you need larger test string, you can raise the limit where it's needed. X-SVN-Rev: 4411
30 lines
829 B
C
30 lines
829 B
C
/********************************************************************
|
|
* COPYRIGHT:
|
|
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
|
* others. All Rights Reserved.
|
|
********************************************************************/
|
|
/********************************************************************************
|
|
*
|
|
* 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
|
|
|
|
#include "cintltst.h"
|
|
|
|
#define MAX_TOKEN_LEN 16
|
|
/* Perform Collation Currency Test */
|
|
void currTest(void);
|
|
|
|
#endif
|