ICU-3050 remove declarations of private functions .. should not be there

X-SVN-Rev: 13699
This commit is contained in:
Ram Viswanadha 2003-11-12 23:23:57 +00:00
parent 620a38e824
commit 47e3203ebe

View file

@ -104,51 +104,6 @@ uprv_syntaxError(const UChar* rules,
UParseError* parseError);
/**
* Map every character in input stream with mapping character
* in the mapping table and populate the output stream.
* For any individual character the mapping table may specify
* that that a character be mapped to nothing, mapped to one
* other character or to a string of other characters.
*
* @param prep Profile to use
* @param src Pointer to UChar buffer containing a single label
* @param srcLength Number of characters in the source label
* @param dest Pointer to the destination buffer to receive the output
* @param destCapacity The capacity of destination array
* @param options
* @param parseError
* @param status ICU error code in/out parameter.
* Must fulfill U_SUCCESS before the function call.
* @return The number of UChars in the destination buffer
*/
U_CFUNC int32_t
usprep_map( UStringPrepProfile* prep,
const UChar* src, int32_t srcLength,
UChar* dest, int32_t destCapacity,
int32_t options,
UParseError* parseError,
UErrorCode* status );
/**
* Normalize the input stream using Normalization Form KC (NFKC)
*
* @param prep Profile to use
* @param src Pointer to UChar buffer containing a single label
* @param srcLength Number of characters in the source label
* @param dest Pointer to the destination buffer to receive the output
* @param destCapacity The capacity of destination array
* @param status ICU error code in/out parameter.
* Must fulfill U_SUCCESS before the function call.
* @return The number of UChars in the destination buffer
*/
U_CFUNC int32_t
usprep_normalize( UStringPrepProfile* prep,
const UChar* src, int32_t srcLength,
UChar* dest, int32_t destCapacity,
UErrorCode* status );
/**
* Swap StringPrep .spp profile data. See udataswp.h.
* @internal