-
Notifications
You must be signed in to change notification settings - Fork 5
/
template.h
42 lines (32 loc) · 924 Bytes
/
template.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
********************************************************************************
* @file ${file_name}
* @author ${user}
* @date ${date}
* @brief
********************************************************************************
*/
#ifndef ${include_guard_symbol}
#define ${include_guard_symbol}
#ifdef __cplusplus
extern "C" {
#endif
/************************************
* INCLUDES
************************************/
/************************************
* MACROS AND DEFINES
************************************/
/************************************
* TYPEDEFS
************************************/
/************************************
* EXPORTED VARIABLES
************************************/
/************************************
* GLOBAL FUNCTION PROTOTYPES
************************************/
#ifdef __cplusplus
}
#endif
#endif