aboutsummaryrefslogtreecommitdiff
path: root/external/Unity/extras/fixture/test/unity_output_Spy.h
diff options
context:
space:
mode:
Diffstat (limited to 'external/Unity/extras/fixture/test/unity_output_Spy.h')
-rw-r--r--external/Unity/extras/fixture/test/unity_output_Spy.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/external/Unity/extras/fixture/test/unity_output_Spy.h b/external/Unity/extras/fixture/test/unity_output_Spy.h
new file mode 100644
index 0000000..b30a7f1
--- /dev/null
+++ b/external/Unity/extras/fixture/test/unity_output_Spy.h
@@ -0,0 +1,17 @@
+/* Copyright (c) 2010 James Grenning and Contributed to Unity Project
+ * ==========================================
+ * 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 D_unity_output_Spy_H
+#define D_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