-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.h
More file actions
executable file
·54 lines (46 loc) · 1.83 KB
/
module.h
File metadata and controls
executable file
·54 lines (46 loc) · 1.83 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
/*
* --------------------------------------------------------------------------
*
* GICSAFe-Firmware
* ----------------
*
* Copyright (C) 2019 CONICET-GICSAFe
* All rights reserved. Protected by international copyright laws.
*
* Contact information:
* site: https://github.com/gicsafe-firmware
* e-mail: <someone>@<somewhere>
* ---------------------------------------------------------------------------
*/
/**
* \file %1$s.h
* \brief Specifies this module.
*/
/* -------------------------- Development history -------------------------- */
/*
*/
/* -------------------------------- Authors -------------------------------- */
/*
* RiGr Rick Grimes rick.grimes@twd.com
*/
/* --------------------------------- Notes --------------------------------- */
/* --------------------------------- Module -------------------------------- */
#ifndef __%3$s_H__
#define __%3$s_H__
/* ----------------------------- Include files ----------------------------- */
%2$s/* ---------------------- External C language linkage ---------------------- */
#ifdef __cplusplus
extern "C" {
#endif
/* --------------------------------- Macros -------------------------------- */
/* -------------------------------- Constants ------------------------------ */
/* ------------------------------- Data types ------------------------------ */
/* -------------------------- External variables --------------------------- */
/* -------------------------- Function prototypes -------------------------- */
/* -------------------- External C language linkage end -------------------- */
#ifdef __cplusplus
}
#endif
/* ------------------------------ Module end ------------------------------- */
#endif
/* ------------------------------ End of file ------------------------------ */