1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
cdt/build/org.eclipse.cdt.managedbuilder.core.tests/testdata/Basename.cpp

37 lines
645 B
C++

/*
============================================================================
Name : $(baseName).cpp
Author : $(author)
Version :
Copyright : $(copyright)
Description : Exe source file
============================================================================
*/
// Include Files
#include "$(baseName).h"
// Defined Constants
#define Constant "CONSTANT"
// Global Variables
static int globalValue;
// Local Functions
void printMessage(char* message) {
printf(message);
}
// Main Function
int main(int nArgs, char **args) {
printMessage("Hello, world!\n");
printMessage("$(baseName)");
}