summaryrefslogtreecommitdiffstats
path: root/Tests/StringFileTest/InputFile.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/StringFileTest/InputFile.h.in')
-rw-r--r--Tests/StringFileTest/InputFile.h.in21
1 files changed, 21 insertions, 0 deletions
diff --git a/Tests/StringFileTest/InputFile.h.in b/Tests/StringFileTest/InputFile.h.in
new file mode 100644
index 0000000..1bda5af
--- /dev/null
+++ b/Tests/StringFileTest/InputFile.h.in
@@ -0,0 +1,21 @@
+#include "includefile"
+
+int CheckMethod(const char* var, const char* val )
+{
+ if ( !var )
+ {
+ printf("Var not specified\n");
+ return 1;
+ }
+ if ( !val )
+ {
+ printf("Val not specified\n");
+ return 1;
+ }
+ if ( strcmp(var, val) != 0)
+ {
+ printf("Var (%s) and Val (%s) are not the same...\n", var, val);
+ return 1;
+ }
+ return 0;
+}