mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00
28 lines
467 B
C
28 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__
|
||
|
|
||
|
|