Files
huanghun_forward 7cc1fcaced update 2.6.1
Signed-off-by: huanghun_forward <huangguohui6@huawei.com>
2026-04-22 16:15:31 +08:00

19 lines
527 B
C

/* =========================================================================
Unity - A Test Framework for C
ThrowTheSwitch.org
Copyright (c) 2007-25 Mike Karlesky, Mark VanderVoord, & Greg Williams
SPDX-License-Identifier: MIT
========================================================================= */
#ifndef CEXCEPTION_H
#define CEXCEPTION_H
#define CEXCEPTION_BEING_USED 1
#define CEXCEPTION_NONE 0
#define CEXCEPTION_T int e = 1; (void)
#define Try if (e)
#define Catch(a) if (!a)
#endif