summaryrefslogtreecommitdiffstats
path: root/2022-2/L3/Estructuras.h
diff options
context:
space:
mode:
Diffstat (limited to '2022-2/L3/Estructuras.h')
-rw-r--r--2022-2/L3/Estructuras.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/2022-2/L3/Estructuras.h b/2022-2/L3/Estructuras.h
deleted file mode 100644
index 489db90..0000000
--- a/2022-2/L3/Estructuras.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Proyecto: EstructurasLab3_2022_2
- * Archivo: Estructuras.h
- * Autor: J. Miguel Guanira E.
- *
- * Created on 13 de septiembre de 2022, 09:26 PM
- */
-
-#ifndef ESTRUCTURAS_H
-#define ESTRUCTURAS_H
-
-struct StCita{
- int codigoDelMedico;
- int fecha; // Fecha en el formato AAAAMMDD
- double tarifaPorConsulta;
- char especialidad[50];
-};
-
-struct StPaciente{
- int dni;
- char nombre[60];
- struct StCita citas[20];
- int numeroDeCitas;
- double totalGastado;
-};
-
-struct StMedico{
- int codigo;
- char nombre[60];
- double tarifaPoxConsulta;
- char especialidad[50];
-};
-
-#endif /* ESTRUCTURAS_H */
-