mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
27 lines
467 B
C
27 lines
467 B
C
/*
|
|
============================================================================
|
|
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__
|
|
|
|
|