-
Notifications
You must be signed in to change notification settings - Fork 0
/
struct.h
48 lines (37 loc) · 1.27 KB
/
struct.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
//----------------------------------------------------------------- DECLARAÇÃO DE CONSTANTES
# define MAX_USERS 10 //numero maximo de perfis
# define MAX_LENGTH_200 200 //tamanha maximo das mensagens do mural (incluido na estrutura Perfil)
# define MAX_LENGTH_50 50 //tamanho maximo do campo email (estrutura Perfil)
# define MAX_LENGTH_25 25 //tamanho maximo dos campos nome e sobrenome (estrutura Perfil)
# define MAX_MSG 50 //tamanho maximo de mensagens permitidas por perfil
int contaPerfil = 0; //contador de perfis criados
//int contarMensagens [MAX_USERS] = {0};
//----------------------------------------------------------------- DECLARAÇÃO DE ESTRUTURAS
//---- Estrutura da data a usar na estrutura perfil
typedef struct s_data {
int dia;
int mes;
int ano;
} Data;
//---- Estrutura do Mural a incluir na estrutura perfil
typedef struct s_mural {
char autor[50];
char texto[200];
int contaGostos;
} Mural;
//---- Estrutura do login
typedef struct s_login {
char username[25];
char password[25];
} Login;
// ---- Estrutura do perfil
typedef struct s_perfil {
char nome[25];
char sobrenome[25];
Data dataNascimento;
char email[50];
char localidade[50];
Mural mural[MAX_MSG];
int contaMsg;
Login login;
} Perfil;