-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.c
70 lines (41 loc) · 2.72 KB
/
template.c
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/***************************************************************************//**
@file +Nombre del archivo (ej: template.c)+
@brief +Descripcion del archivo+
@author +Nombre del autor (ej: Salvador Allende)+
******************************************************************************/
/*******************************************************************************
* INCLUDE HEADER FILES
******************************************************************************/
// +Incluir el header propio (ej: #include "template.h")+
/*******************************************************************************
* CONSTANT AND MACRO DEFINITIONS USING #DEFINE
******************************************************************************/
/*******************************************************************************
* ENUMERATIONS AND STRUCTURES AND TYPEDEFS
******************************************************************************/
/*******************************************************************************
* VARIABLES WITH GLOBAL SCOPE
******************************************************************************/
// +ej: unsigned int anio_actual;+
/*******************************************************************************
* FUNCTION PROTOTYPES FOR PRIVATE FUNCTIONS WITH FILE LEVEL SCOPE
******************************************************************************/
// +ej: static void falta_envido (int);+
/*******************************************************************************
* ROM CONST VARIABLES WITH FILE LEVEL SCOPE
******************************************************************************/
// +ej: static const int temperaturas_medias[4] = {23, 26, 24, 29};+
/*******************************************************************************
* STATIC VARIABLES AND CONST VARIABLES WITH FILE LEVEL SCOPE
******************************************************************************/
// +ej: static int temperaturas_actuales[4];+
/*******************************************************************************
*******************************************************************************
GLOBAL FUNCTION DEFINITIONS
*******************************************************************************
******************************************************************************/
/*******************************************************************************
*******************************************************************************
LOCAL FUNCTION DEFINITIONS
*******************************************************************************
******************************************************************************/