summaryrefslogtreecommitdiff
path: root/Build/source/libs/icu-xetex/test/cintltst/cestst.h
diff options
context:
space:
mode:
authorJonathan Kew <jfkthame@googlemail.com>2006-07-25 12:37:43 +0000
committerJonathan Kew <jfkthame@googlemail.com>2006-07-25 12:37:43 +0000
commit10c60368cd42904bd991453f02b684ebe02ef915 (patch)
treec6fb06ccf22a81c80af08f79df1b436120703de4 /Build/source/libs/icu-xetex/test/cintltst/cestst.h
parent4d8b2aac6036acbb6878236c27e2fb110dad8643 (diff)
adding ICU library sources used by xetex
git-svn-id: svn://tug.org/texlive/trunk@1915 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/icu-xetex/test/cintltst/cestst.h')
-rw-r--r--Build/source/libs/icu-xetex/test/cintltst/cestst.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/Build/source/libs/icu-xetex/test/cintltst/cestst.h b/Build/source/libs/icu-xetex/test/cintltst/cestst.h
new file mode 100644
index 00000000000..e15f32d4875
--- /dev/null
+++ b/Build/source/libs/icu-xetex/test/cintltst/cestst.h
@@ -0,0 +1,44 @@
+/********************************************************************
+ * COPYRIGHT:
+ * Copyright (c) 1997-2001, International Business Machines Corporation and
+ * others. All Rights Reserved.
+ ********************************************************************/
+/********************************************************************************
+*
+* File CESTST.H
+*
+* Modification History:
+* Name Description
+* Madhu Katragadda Converted to C
+*********************************************************************************/
+/**
+ * CollationSpanishTest 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 _CESCOLLTST
+#define _CESCOLLTST
+
+#include "unicode/utypes.h"
+
+#if !UCONFIG_NO_COLLATION
+
+#include "cintltst.h"
+
+
+#define MAX_TOKEN_LEN 16
+
+
+ /* perform test with strength SECONDARY */
+ static void TestPrimary(void);
+
+ /* perform test with strength TERTIARY */
+ static void TestTertiary(void);
+
+
+#endif /* #if !UCONFIG_NO_COLLATION */
+
+
+#endif