-
Notifications
You must be signed in to change notification settings - Fork 0
/
aplicacion.h
37 lines (34 loc) · 1.23 KB
/
aplicacion.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
#ifndef __APLICACION_H__
#define __APLICACION_H__
#include <ctype.h> // Incluida para utilizar isdigit().
#include <stdio.h>
#include <stdlib.h> // Incluida para utilizar system().
#include <unistd.h> // Incluida para utilizar sleep().
#include <stdio_ext.h> // Incluida para utilizar __fpurge():
#include "arbolAVL.h"
struct NodoLista *lista; // Utilizada para checar el árbol en BFS.
void IniciarAplicacion();
void MostrarMenuPrincipal(char *);
void SeleccionarOpcion(char *);
int ValidarOpcionMenuPrincipal(char *);
void IrHaciaOpcion(char *);
void AgregarContacto();
void BuscarContacto();
void EliminarContacto();
void ModificarContacto(char *);
void MostrarContactos();
void EstablecerNombre(struct Contacto *);
void EstablecerNumeroCasa(struct Contacto *);
void EstablecerNumeroCelular(struct Contacto *);
void EstablecerCorreo(struct Contacto *);
int ValidarOpcionReiniciarSistema(char *);
int VolverAlMenuPrincipal(char *);
void ConvertirAMayus(char *);
void ImprimirContacto(struct Nodo *);
void RealizarModifcacion(char *, struct Nodo *);
int ValidarOpcionModificarContacto(char *);
void ModificarTelefonoCasa(struct Nodo *);
void ModificarTelefonoCelular(struct Nodo *);
void ModificarCorreo(struct Nodo *);
void BFS(struct Nodo *);
#endif