mirror of
https://github.com/ThrowTheSwitch/Unity
synced 2025-01-23 08:28:41 -05:00
18 lines
592 B
C
18 lines
592 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 UNITY_OUTPUT_SPY_H
|
|
#define UNITY_OUTPUT_SPY_H
|
|
|
|
void UnityOutputCharSpy_Create(int s);
|
|
void UnityOutputCharSpy_Destroy(void);
|
|
void UnityOutputCharSpy_OutputChar(int c);
|
|
const char * UnityOutputCharSpy_Get(void);
|
|
void UnityOutputCharSpy_Enable(int enable);
|
|
|
|
#endif
|