Simulated product dispenser

Dependencies:   HTS221

Fork of mbed-cloud-workshop-connect-HTS221 by Jim Carver

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers unity_output_Spy.h Source File

unity_output_Spy.h

00001 //- Copyright (c) 2010 James Grenning and Contributed to Unity Project
00002 /* ==========================================
00003     Unity Project - A Test Framework for C
00004     Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
00005     [Released under MIT License. Please refer to license.txt for details]
00006 ========================================== */
00007 
00008 #ifndef D_unity_output_Spy_H
00009 #define D_unity_output_Spy_H
00010 
00011 void UnityOutputCharSpy_Create(int s);
00012 void UnityOutputCharSpy_Destroy(void);
00013 void UnityOutputCharSpy_OutputChar(int c);
00014 const char * UnityOutputCharSpy_Get(void);
00015 void UnityOutputCharSpy_Enable(int enable);
00016 
00017 #endif