// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ****************************************************************************** * * Copyright (C) 1998-2004, International Business Machines * Corporation and others. All Rights Reserved. * ****************************************************************************** * * ucnvdisp.c: * Implements APIs for the ICU's codeset conversion library display names. * * Modification History: * * Date Name Description * 04/04/99 helena Fixed internal header inclusion. * 05/09/00 helena Added implementation to handle fallback mappings. * 06/20/2000 helena OS/400 port changes; mostly typecast. * 09/08/2004 grhoten split from ucnv.c */ #include "unicode/utypes.h" #if !UCONFIG_NO_CONVERSION #include "unicode/ustring.h" #include "unicode/ures.h" #include "unicode/ucnv.h" #include "cstring.h" #include "ustr_imp.h" #include "ucnv_imp.h" #include "putilimp.h" U_CAPI int32_t U_EXPORT2 ucnv_getDisplayName(const UConverter *cnv, const char *displayLocale, char16_t *displayName, int32_t displayNameCapacity, UErrorCode *pErrorCode) { … } #endif /* * Hey, Emacs, please set the following: * * Local Variables: * indent-tabs-mode: nil * End: * */