unity_output_Spy.h 628 B

1234567891011121314151617
  1. /* Copyright (c) 2010 James Grenning and Contributed to Unity Project
  2. * ==========================================
  3. * Unity Project - A Test Framework for C
  4. * Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
  5. * [Released under MIT License. Please refer to license.txt for details]
  6. * ========================================== */
  7. #ifndef D_unity_output_Spy_H
  8. #define D_unity_output_Spy_H
  9. void UnityOutputCharSpy_Create(int s);
  10. void UnityOutputCharSpy_Destroy(void);
  11. void UnityOutputCharSpy_OutputChar(int c);
  12. const char * UnityOutputCharSpy_Get(void);
  13. void UnityOutputCharSpy_Enable(int enable);
  14. #endif