mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2025-07-13 15:56:51 +08:00
17 lines
554 B
C
17 lines
554 B
C
/* ==========================================
|
|
* Unity Project - A Test Framework for C
|
|
* Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
|
|
* [Released under MIT License. Please refer to license.txt for details]
|
|
* ========================================== */
|
|
|
|
#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
|