Cpp/Exámenes Resultos (Extraord.../Septiembre2016_2/ListaContactos.h

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