2017-01-20 00:20:31 +00:00
|
|
|
// © 2016 and later: Unicode, Inc. and others.
|
2016-06-15 18:58:17 +00:00
|
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
2002-07-22 23:24:55 +00:00
|
|
|
/*
|
|
|
|
******************************************************************************
|
|
|
|
*
|
2016-05-31 21:45:07 +00:00
|
|
|
* Copyright (C) 2002-2011, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
2002-07-22 23:24:55 +00:00
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* File uassert.h
|
|
|
|
*
|
|
|
|
* Contains U_ASSERT macro
|
|
|
|
*
|
|
|
|
* By default, U_ASSERT just wraps the C library assert macro.
|
|
|
|
* By changing the definition here, the assert behavior for ICU can be changed
|
|
|
|
* without affecting other non-ICU uses of the C library assert().
|
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef U_ASSERT_H
|
|
|
|
#define U_ASSERT_H
|
2002-07-23 18:03:54 +00:00
|
|
|
/* utypes.h is included to get the proper define for uint8_t */
|
|
|
|
#include "unicode/utypes.h"
|
2011-07-27 20:16:07 +00:00
|
|
|
#if U_DEBUG
|
|
|
|
# include <assert.h>
|
|
|
|
# define U_ASSERT(exp) assert(exp)
|
2003-10-16 18:34:44 +00:00
|
|
|
#else
|
2011-07-27 20:16:07 +00:00
|
|
|
# define U_ASSERT(exp)
|
2002-07-22 23:24:55 +00:00
|
|
|
#endif
|
2003-10-16 18:34:44 +00:00
|
|
|
#endif
|
2002-07-22 23:24:55 +00:00
|
|
|
|
|
|
|
|