-
Notifications
You must be signed in to change notification settings - Fork 0
/
structs.h
73 lines (63 loc) · 1.63 KB
/
structs.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/**
* @file structs.h
* @brief
* @version 0.1
* @date 2023-12-21
*
* @copyright Copyright (c) 2023
*
*/
// Estruturas
typedef struct {
int dia, mes, ano;
} Data;
typedef struct {
int pacienteID;
char nome[30];
int telefone;
} Cliente;
typedef struct {
int pacienteID;
Data data;
int refeicao; // 1 - pequeno almoço; 2 - almoço; 3 - jantar
char alimento[50];
int calorias;
} DietaRealizada;
typedef struct {
int pacienteID;
Data dataInicio, dataFim;
int refeicao; // 1 - pequeno almoço; 2 - almoço; 3 - jantar
int min_cal, max_cal;
} PlanoNutricional;
typedef struct {
int pacienteID;
char nome[30];
int refeicao; // 1 - pequeno almoço; 2 - almoço; 3 - jantar
Data dataInicio, dataFim;
int min_cal, max_cal, consumo_cal, n_compridas;
} RefeicoesPlaneadas;
//
// Elementos das listas
typedef struct elementoCliente {
Cliente cliente;
struct elementoCliente *prox;
} ElementoCliente;
typedef struct elementoDietaRelizada {
DietaRealizada dietaRealizada;
struct elementoDietaRelizada *prox;
} ElementoDietaRealizada;
typedef struct elementoPlanoNutricional {
PlanoNutricional planoNutricional;
struct elementoPlanoNutricional *prox;
} ElementoPlanoNutricional;
typedef struct elementoRefeicoesPlaneadas {
RefeicoesPlaneadas refeicoesPlaneadas;
struct elementoRefeicoesPlaneadas *prox;
} ElementoRefeicoesPlaneadas;
//
// Listas
typedef ElementoCliente* ListaCliente;
typedef ElementoDietaRealizada* ListaDietaRealizada;
typedef ElementoPlanoNutricional* ListaPlanoNutricional;
typedef ElementoRefeicoesPlaneadas* ListaRefeicoesPlaneadas;
//