Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(602)

Unified Diff: icu46/source/test/cintltst/nfsprep.h

Issue 5516007: Check in the pristine copy of ICU 4.6... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « icu46/source/test/cintltst/ncnvtst.c ('k') | icu46/source/test/cintltst/nfsprep.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: icu46/source/test/cintltst/nfsprep.h
===================================================================
--- icu46/source/test/cintltst/nfsprep.h (revision 0)
+++ icu46/source/test/cintltst/nfsprep.h (revision 0)
@@ -0,0 +1,113 @@
+/*
+ *******************************************************************************
+ *
+ * Copyright (C) 2003, International Business Machines
+ * Corporation and others. All Rights Reserved.
+ *
+ *******************************************************************************
+ * file name: nfsprep.h
+ * encoding: US-ASCII
+ * tab size: 8 (not used)
+ * indentation:4
+ *
+ * created on: 2003jul11
+ * created by: Ram Viswanadha
+ */
+#ifndef _NFSPREP_H
+#define _NFSPREP_H
+
+#include "unicode/utypes.h"
+
+#if !UCONFIG_NO_IDNA
+
+#include "unicode/ustring.h"
+#include "unicode/usprep.h"
+#include <stdlib.h>
+#include <string.h>
+
+
+/* this enum must be kept in syn with NFS4DataFileNames array in nfsprep.c */
+enum NFS4ProfileState{
+ NFS4_CS_PREP_CS,
+ NFS4_CS_PREP_CI,
+ NFS4_CIS_PREP,
+ NFS4_MIXED_PREP_PREFIX,
+ NFS4_MIXED_PREP_SUFFIX
+};
+
+typedef enum NFS4ProfileState NFS4ProfileState;
+
+/**
+ * Prepares the source UTF-8 string for use in file names and
+ * returns UTF-8 string on output.
+ * @param src
+ * @param srcLen
+ * @param dest
+ * @param destCapacity
+ * @param state
+ * @param parseError
+ * @param status
+ */
+int32_t
+nfs4_prepare(const char* src, int32_t srcLength,
+ char* dest, int32_t destCapacity,
+ NFS4ProfileState state,
+ UParseError* parseError,
+ UErrorCode* status);
+
+/**
+ * @param dest
+ * @param destCapacity
+ * @param src
+ * @param srcLen
+ * @param state
+ * @param parseError
+ * @param status
+ */
+int32_t
+nfs4_mixed_prepare( const char* src, int32_t srcLength,
+ char* dest, int32_t destCapacity,
+ UParseError* parseError,
+ UErrorCode* status);
+
+/**
+ * @param dest
+ * @param destCapacity
+ * @param src
+ * @param srcLen
+ * @param state
+ * @param parseError
+ * @param status
+ */
+int32_t
+nfs4_cis_prepare( const char* src, int32_t srcLength,
+ char* dest, int32_t destCapacity,
+ UParseError* parseError,
+ UErrorCode* status);
+
+/**
+ * @param dest
+ * @param destCapacity
+ * @param src
+ * @param srcLen
+ * @param state
+ * @param parseError
+ * @param status
+ */
+int32_t
+nfs4_cs_prepare( const char* src, int32_t srcLength,
+ char* dest, int32_t destCapacity,
+ UBool isCaseSensitive,
+ UParseError* parseError,
+ UErrorCode* status);
+#endif
+
+#endif
+/*
+ * Hey, Emacs, please set the following:
+ *
+ * Local Variables:
+ * indent-tabs-mode: nil
+ * End:
+ *
+ */
Property changes on: icu46/source/test/cintltst/nfsprep.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « icu46/source/test/cintltst/ncnvtst.c ('k') | icu46/source/test/cintltst/nfsprep.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698