1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
/****************************************************************
* *
* Copyright (c) 2015-2018 Fidelity National Information *
* Services, Inc. and/or its subsidiaries. All rights reserved. *
* *
* This source code contains the intellectual property *
* of its copyright holder(s), and is made available *
* under a license. If you do not know the terms of *
* the license, please stop and do not read further. *
* *
****************************************************************/
#ifndef UTFCGR_TRC_INCLUDED
#define UTFCGR_TRC_INCLUDED
/* Debugging macros for UTF8 caching. These are separate from other macros so they can be
* included regardless of whether UTF8_SUPPORTED is set or not.
*
* Uncomment below define to enable debugging macros
*/
/* #define DEBUG_UTF8CACHE */
#if defined(UTF8_SUPPORTED) && defined(DEBUG_UTF8CACHE)
# define DBGUTFC(x) DBGFPF(x)
# define DBGUTFC_ONLY(x) x
# include "gtm_stdio.h"
# include "gtmio.h"
# include "have_crit.h" /* For DBGFPF/FFLUSH/INTRPT_IN_FFLUSH */
#else
# define DBGUTFC(x)
# define DBGUTFC_ONLY(x)
#endif
#endif
|