mirror of
https://github.com/ThrowTheSwitch/Unity
synced 2025-02-08 10:18:44 -05:00
17 lines
442 B
C
17 lines
442 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 DEF_H
|
|
#define DEF_H
|
|
|
|
#define EXTERN_DECL
|
|
|
|
extern int CounterSuiteSetup;
|
|
extern int isArgumentOne(int i);
|
|
|
|
#endif
|