files
Fernando Méndez b753c15873 Add files via upload
2019-06-20 12:55:38 +02:00

21 lines
349 B
C

#ifndef _LISTACONTACTOS
#define _LISTACONTACTOS
#include "Contacto.h"
//Constantes:
const int MAX_CONTACTOS = 50;
//Tipos:
typedef struct tListaContactos {
tContacto *contacto[MAX_CONTACTOS];
int cont;
};
//Funciones:
bool cargar(tListaContactos& lista);
void destruir(tListaContactos& lista);
#endif // !_LISTACONTACTOS