// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ******************************************************************************* * * Copyright (C) 2001-2011, International Business Machines * Corporation and others. All Rights Reserved. * ******************************************************************************* * file name: casetrn.cpp * encoding: UTF-8 * tab size: 8 (not used) * indentation:4 * * created on: 2004sep03 * created by: Markus W. Scherer * * Implementation class for lower-/upper-/title-casing transliterators. */ #include "unicode/utypes.h" #if !UCONFIG_NO_TRANSLITERATION #include "unicode/uchar.h" #include "unicode/ustring.h" #include "unicode/utf.h" #include "unicode/utf16.h" #include "tolowtrn.h" #include "ucase.h" #include "cpputils.h" /* case context iterator using a Replaceable */ U_CFUNC UChar32 U_CALLCONV utrans_rep_caseContextIterator(void *context, int8_t dir) { … } U_NAMESPACE_BEGIN #endif /* #if !UCONFIG_NO_TRANSLITERATION */