-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructs.h
More file actions
44 lines (39 loc) · 825 Bytes
/
Copy pathstructs.h
File metadata and controls
44 lines (39 loc) · 825 Bytes
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
#ifndef helpers_H
#define helpers_H
#define BEERMENU 1
#define CADASTRO 2
#define CONTATO 3
#define ASCONSAGRADAS 1
#define ASPRESTIGIADAS 2
typedef struct cliente {
char nome[30];
char cep[12];
char endereco[50];
int numero;
char bairro[50];
char email[30];
char senha[15];
char cpf[15];
char telefone[15];
int idade;
char descricao[12];
} Client;
typedef struct pagamento {
char numCartao[20];
char nomeCartao[30];
Client info;
char dataValidade[10];
int codSeguranca;
int parcelas;
} Pagamento;
//PROTOTIPOS DAS FUNCOES
int menuPrincipal();
int menuBeer();
void codigoNaoEncontrado();
void login();
void cadastroCliente();
void cartaoCredito();
void identificacaoEntrega();
void pedidoRealizado();
void contatoBeerDelivery();
#endif