• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* ==========================================
2  *  Unity Project - A Test Framework for C
3  *  Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
4  *  [Released under MIT License. Please refer to license.txt for details]
5  * ========================================== */
6 
7 #ifndef UNITY_OUTPUT_SPY_H
8 #define UNITY_OUTPUT_SPY_H
9 
10 void UnityOutputCharSpy_Create(int s);
11 void UnityOutputCharSpy_Destroy(void);
12 void UnityOutputCharSpy_OutputChar(int c);
13 const char * UnityOutputCharSpy_Get(void);
14 void UnityOutputCharSpy_Enable(int enable);
15 
16 #endif
17