-
Notifications
You must be signed in to change notification settings - Fork 0
/
templ.h
54 lines (41 loc) · 1.48 KB
/
templ.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
43
44
45
46
47
48
49
50
51
52
53
54
/*------------------------------------------------------------------------------
| File: name.h
|
| Say something about WHAT the model does.
|
| Note: important things to know
|-------------------------------------------------------------------------------
| Datatypes:
| NAME_datatype -- used to store data and informatin of something
| ...
|-------------------------------------------------------------------------------
| Functions:
| name_somefunction -- short explaination
| ...
-----------------------------------------------------------------------------*/
#ifndef _NAME_H_
#define _NAME_H_
#define NAME_SOMEDEFS 42 1
//#############################################################################
// datatypes
/* structure to hold details of ... */
typedef struct s_name {
int varxy
}NAME_dinx_t;
//#############################################################################
// callback function
typedef void (*Callback)(arg*);
//#############################################################################
// functions (prototypes)
/*------------------------------------------------------------------------------
| name_somefunction -- short explaination
|
| Parameter:
| ---
|
| Return:
| ---
|
-----------------------------------------------------------------------------*/
extern void name_somefunction();
#endif // _NAME_H_