forked from ignasave/TPFinalProgramacion2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaleatorios.h
More file actions
21 lines (17 loc) · 692 Bytes
/
Copy pathaleatorios.h
File metadata and controls
21 lines (17 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef ALEATORIOS_H_INCLUDED
#define ALEATORIOS_H_INCLUDED
#include "cliente.h"
#include "consumo.h"
///////////// ARCHIVO DE CLIENTES /////////////
void generarArchivoClientesAleatorio(char nomArch[],int n);
stCliente getClienteRandom();
void getApellido(char apellido[]);
void getNombre(char nombre[]);
void getDNI(char dni[]);
void getEMail(char email[],stCliente cliente);
void getDomicilio(char domicilio[]);
void getMovil(char movil[]);
///////////// ARCHIVO DE CONSUMOS /////////////
void generarArchConsumosAleatorios(char nomArchConsumos[],char nomArchClientes[]);
int getArrConsumosAleatorios(stConsumo arr[],int idCliente,int nuevoIdConsumos);
#endif // ALEATORIOS_H_INCLUDED