Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core.tests/testdata/Basename.h')
-rw-r--r--core/org.eclipse.cdt.core.tests/testdata/Basename.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core.tests/testdata/Basename.h b/core/org.eclipse.cdt.core.tests/testdata/Basename.h
new file mode 100644
index 00000000000..3c5300af32d
--- /dev/null
+++ b/core/org.eclipse.cdt.core.tests/testdata/Basename.h
@@ -0,0 +1,27 @@
+/*
+============================================================================
+ Name : $(baseName).h
+ Author : $(author)
+ Version :
+ Copyright : $(copyright)
+ Description : Exe header file
+============================================================================
+*/
+
+#ifndef __$(baseName)_H__
+#define __$(baseName)_H__
+
+
+// Include Files
+
+#include <stdio.h>
+
+
+// Function Prototypes
+
+void printMessage(char*);
+
+
+#endif // __$(baseName)_H__
+
+

Back to the top